Ensure recreation of faction flags and perms on getAll and every 3 seconds to allow for runtime database deletion without server crash.

This commit is contained in:
Olof Larsson
2014-11-19 11:24:36 +01:00
parent c058cd7ca5
commit f8d7e50828
7 changed files with 123 additions and 1 deletions

View File

@ -4,5 +4,18 @@ import com.massivecraft.massivecore.event.EventMassiveCore;
public abstract class EventFactionsAbstract extends EventMassiveCore
{
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
public EventFactionsAbstract()
{
}
public EventFactionsAbstract(boolean isAsync)
{
super(isAsync);
}
}