Project cleanup pre merge.

This commit is contained in:
2023-07-15 09:23:48 -04:00
parent 134b651df8
commit 9bbdef224d
747 changed files with 99704 additions and 101200 deletions
+12 -12
View File
@@ -16,25 +16,25 @@ import engine.objects.PlayerCharacter;
public class GetCacheCountCmd extends AbstractDevCmd {
public GetCacheCountCmd() {
public GetCacheCountCmd() {
super("getcachecount");
this.addCmdString("getcachecount");
}
@Override
protected void _doCmd(PlayerCharacter pcSender, String[] args,
AbstractGameObject target) {
DbManager.printCacheCount(pcSender);
}
@Override
protected void _doCmd(PlayerCharacter pcSender, String[] args,
AbstractGameObject target) {
DbManager.printCacheCount(pcSender);
}
@Override
protected String _getUsageString() {
@Override
protected String _getUsageString() {
return "' /getcachecount'";
}
}
@Override
protected String _getHelpString() {
@Override
protected String _getHelpString() {
return "Get a count of the objects in the cache";
}
}
}