Skip to content

Commit

Permalink
Ops
Browse files Browse the repository at this point in the history
  • Loading branch information
Creeperface01 committed Mar 7, 2018
1 parent fe81008 commit 73d44a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/gt/creeperface/holograms/Holograms.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void onEnable() {
getServer().getPluginManager().registerEvents(this, this);
getServer().getScheduler().scheduleDelayedRepeatingTask(this, () -> {
saveHolograms(true);
}, this.configuration.getSaveInterval(), this.configuration.getSaveInterval());
}, this.configuration.getSaveInterval() * 60 * 20, this.configuration.getSaveInterval() * 60 * 20);

getServer().getScheduler().scheduleRepeatingTask(this, new Task() {
@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#don't change this
version: 1

#gap between separate lines
#distance between separate lines
lines_gaps: 0.3

#if hologram packets should be compressed asynchronously
Expand Down

0 comments on commit 73d44a7

Please sign in to comment.