Skip to content

Commit

Permalink
Release Plex v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Telesphoreo committed Jul 23, 2023
1 parent 77dc95a commit ecbd9c0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "dev.plex"
version = "1.3-SNAPSHOT"
version = "1.3"
description = "Plex"

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion proxy/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public void run(ScheduledTask task)
if (entities.stream().anyMatch(entityName -> entityName.equalsIgnoreCase(entity.getType().name())))
{
Bukkit.getRegionScheduler().run(Plex.get(), entity.getLocation(), this::entityRun);
PlexLog.debug("Started entity scheduler");
}
}
}
Expand All @@ -47,7 +46,6 @@ private void entityRun(ScheduledTask task)
{
if (entities.stream().anyMatch(entityName -> entityName.equalsIgnoreCase(entity.getType().name())))
{
PlexLog.debug("Removed entity " + entity.getName());
entity.remove();
task.cancel();
}
Expand Down

0 comments on commit ecbd9c0

Please sign in to comment.