Re-added potion spy (#14)

* Re-added potion spy

* grammar nazi
This commit is contained in:
Seth
2017-12-30 20:58:20 -07:00
committed by Lemon
parent 7e524da928
commit d9d1d4fa9b
4 changed files with 119 additions and 0 deletions

View File

@ -96,6 +96,7 @@ public class TotalFreedomMod extends AeroPlugin<TotalFreedomMod>
public Fuckoff fo;
public AutoKick ak;
public AutoEject ae;
public Monitors mo;
public MovementValidator mv;
public EntityWiper ew;
public FrontDoor fd;
@ -198,6 +199,7 @@ public class TotalFreedomMod extends AeroPlugin<TotalFreedomMod>
fo = services.registerService(Fuckoff.class);
ak = services.registerService(AutoKick.class);
ae = services.registerService(AutoEject.class);
mo = services.registerService(Monitors.class);
mv = services.registerService(MovementValidator.class);