Fix a leftover piece of older code
This commit is contained in:
parent
aaf677669d
commit
abed7cd895
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue