1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-02-25 08:52:40 +01:00

Another state added

This commit is contained in:
snowleo 2011-10-23 23:13:30 +02:00
parent b573516470
commit 2506b24392

View File

@ -23,6 +23,7 @@ public class StateMachine extends WorkListener
this.player = player; this.player = player;
states.clear(); states.clear();
states.add(new EssentialsChat(states)); states.add(new EssentialsChat(states));
states.add(new EssentialsProtect(states));
current = states.get(0); current = states.get(0);
} }