Fix a leftover piece of older code

This commit is contained in:
Aria 2023-05-06 04:35:22 -07:00
parent aaf677669d
commit abed7cd895
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ plugins {
id 'maven-publish'
}
version = "1.1.7"
version = "1.1.8"
group = "dev.zontreck"
archivesBaseName = "LibAC"
java.toolchain.languageVersion = JavaLanguageVersion.of(17)

View file

@ -65,7 +65,7 @@ public class DelayedExecutorService {
public void schedule(final Runnable run, int seconds)
{
if(!Terminal.isRunning()){
if(!isRunning()){
return;
}
//long unix = Instant.now().getEpochSecond()+ (seconds);