Release Plex v1.3

This commit is contained in:
2023-07-22 20:00:25 -05:00
parent 77dc95ae29
commit ecbd9c02da
3 changed files with 2 additions and 4 deletions

View File

@ -30,7 +30,6 @@ public class AutoWipeService extends AbstractService
if (entities.stream().anyMatch(entityName -> entityName.equalsIgnoreCase(entity.getType().name())))
{
Bukkit.getRegionScheduler().run(Plex.get(), entity.getLocation(), this::entityRun);
PlexLog.debug("Started entity scheduler");
}
}
}
@ -47,7 +46,6 @@ public class AutoWipeService extends AbstractService
{
if (entities.stream().anyMatch(entityName -> entityName.equalsIgnoreCase(entity.getType().name())))
{
PlexLog.debug("Removed entity " + entity.getName());
entity.remove();
task.cancel();
}