mirror of
https://github.com/plexusorg/Plex.git
synced 2024-12-27 10:34:16 +00:00
Release Plex v1.3
This commit is contained in:
parent
77dc95ae29
commit
ecbd9c02da
3 changed files with 2 additions and 4 deletions
|
@ -5,7 +5,7 @@ plugins {
|
|||
}
|
||||
|
||||
group = "dev.plex"
|
||||
version = "1.3-SNAPSHOT"
|
||||
version = "1.3"
|
||||
description = "Plex"
|
||||
|
||||
subprojects {
|
||||
|
|
|
@ -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")
|
||||
}
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue