Skip to content

Commit

Permalink
Fixes #81
Browse files Browse the repository at this point in the history
  • Loading branch information
Lauriichan committed Apr 14, 2024
1 parent 7c59056 commit 7186495
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>com/syntaxphoenix/spigot/smoothtimber/annotation/*.class</exclude>
<exclude>
com/syntaxphoenix/spigot/smoothtimber/annotation/*.class</exclude>
</excludes>
</filter>
</filters>
Expand All @@ -68,6 +69,9 @@
<configuration>
<source>11</source>
<target>11</target>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
<annotationProcessors>
<annotationProcessor>
com.syntaxphoenix.spigot.smoothtimber.annotation.MCVersionEnumGenerator</annotationProcessor>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class ToggleTimer implements Runnable {

public ToggleTimer(final ToggleStorage storage) {
this.storage = storage;
Platform.getPlatform().asyncTaskTimer(this, 0, 0);
Platform.getPlatform().asyncTaskTimer(this, 20, 20);
}

public final ToggleStorage getStorage() {
Expand Down

0 comments on commit 7186495

Please sign in to comment.