Try to improve things

This commit is contained in:
2022-04-08 16:57:09 -05:00
parent 15b50ac8ae
commit 9297eb6703
5 changed files with 29 additions and 47 deletions

View File

@ -18,7 +18,7 @@ public class ServiceManager
registerService(new GameRuleService());
registerService(new UpdateCheckerService());
registerService(new AutoWipeService());
registerService(new CmdBlockerService());
registerService(new CommandBlockerService());
}
public void startServices()

View File

@ -3,9 +3,9 @@ package dev.plex.services.impl;
import dev.plex.services.AbstractService;
import dev.plex.util.PlexLog;
public class CmdBlockerService extends AbstractService
public class CommandBlockerService extends AbstractService
{
public CmdBlockerService()
public CommandBlockerService()
{
super(false, true);
}