Release Plex v1.3

This commit is contained in:
Telesphoreo 2023-07-22 20:00:25 -05:00
parent 77dc95ae29
commit ecbd9c02da
No known key found for this signature in database
GPG Key ID: 68B745F7F8C2FADA
3 changed files with 2 additions and 4 deletions

View File

@ -5,7 +5,7 @@ plugins {
}
group = "dev.plex"
version = "1.3-SNAPSHOT"
version = "1.3"
description = "Plex"
subprojects {

View File

@ -39,7 +39,7 @@ publishing {
dependencies {
compileOnly("org.projectlombok:lombok:1.18.28")
annotationProcessor("org.projectlombok:lombok:1.18.28")
compileOnly("org.json:json:20230227")
compileOnly("org.json:json:20230618")
compileOnly("com.velocitypowered:velocity-api:3.2.0-SNAPSHOT")
annotationProcessor("com.velocitypowered:velocity-api:3.2.0-SNAPSHOT")
}

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();
}