Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ java {
}

group = 'me.playbosswar.com'
version = '8.11.4'
version = '8.11.5'
description = 'CommandTimer'

repositories {
Expand Down Expand Up @@ -70,7 +70,7 @@ publishing {
maven(MavenPublication) {
groupId = 'me.playbosswar.com'
artifactId = 'commandtimer'
version = '8.11.4'
version = '8.11.5'

from components.java
}
Expand Down
4 changes: 2 additions & 2 deletions java17-build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {


group = 'me.playbosswar.com'
version = '8.11.4'
version = '8.11.5'
description = 'CommandTimer'

repositories {
Expand Down Expand Up @@ -63,7 +63,7 @@ publishing {
maven(MavenPublication) {
groupId = 'me.playbosswar.com'
artifactId = 'commandtimer-java17'
version = '8.11.4'
version = '8.11.5'

from components.java
}
Expand Down
4 changes: 2 additions & 2 deletions java21-build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {


group = 'me.playbosswar.com'
version = '8.11.4'
version = '8.11.5'
description = 'CommandTimer'

repositories {
Expand Down Expand Up @@ -68,7 +68,7 @@ publishing {
maven(MavenPublication) {
groupId = 'me.playbosswar.com'
artifactId = 'commandtimer-java21'
version = '8.11.4'
version = '8.11.5'
from components.java
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/me/playbosswar/com/tasks/TasksManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ private boolean runConsolePerUserCommand(Task task, TaskCommand taskCommand, Lis
Messages.sendDebugConsole(CONDITION_NO_MATCH);
continue;
}
willExecute = true;
}
willExecute = true;

if(delayedExecutions) {
Bukkit.getScheduler().scheduleSyncDelayedTask(CommandTimerPlugin.getPlugin(), () -> {
Expand Down Expand Up @@ -216,9 +216,9 @@ private boolean runPlayerCommand(Task task, TaskCommand taskCommand, List<UUID>
Messages.sendDebugConsole(CONDITION_NO_MATCH);
continue;
}
willExecute = true;
}

willExecute = true;
if(delayedExecution) {
Bukkit.getScheduler().scheduleSyncDelayedTask(CommandTimerPlugin.getPlugin(), () -> runForPlayer(p,
command), 20L * i * taskCommand.getInterval().toSeconds());
Expand Down Expand Up @@ -274,8 +274,8 @@ private boolean runOperatorCommand(Task task, TaskCommand taskCommand, List<UUID
}
continue;
}
willExecute = true;
}
willExecute = true;

if(delayedExecutions) {
Bukkit.getScheduler().scheduleSyncDelayedTask(CommandTimerPlugin.getPlugin(), () -> {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
main: me.playbosswar.com.CommandTimerPlugin
name: "CommandTimer"
version: "8.11.4"
version: "8.11.5"
description: "Schedule commands like you want"
author: PlayBossWar
api-version: 1.13
Expand Down