aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLéo Kosman <leo.kosman@proton.me>2024-08-24 18:13:45 +0200
committerLéo Kosman <leo.kosman@proton.me>2024-08-24 18:13:45 +0200
commitc57d37921b6c7e7eea53f495b0d2c8ade927e555 (patch)
tree7b7b313f26ef844b4854252c7d8e6a15d58e6a33 /src
parent57c83485e1db1513fa204c3ef5a0d81176995490 (diff)
fix: seconds instead of milliseconds
Diffstat (limited to 'src')
-rw-r--r--src/main/java/world/anhgelus/molehunt/Game.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/world/anhgelus/molehunt/Game.java b/src/main/java/world/anhgelus/molehunt/Game.java
index b6c0338..9919703 100644
--- a/src/main/java/world/anhgelus/molehunt/Game.java
+++ b/src/main/java/world/anhgelus/molehunt/Game.java
@@ -70,7 +70,7 @@ public class Game {
Molehunt.CONFIG.getFinalWorldSize(),
(long) (Molehunt.CONFIG.getGameDuration() - Molehunt.CONFIG.getBorderShrinkingStartingTimeOffset()) * 60 * 60);
}
- }, (long) Molehunt.CONFIG.getBorderShrinkingStartingTimeOffset() * 60 * 60);
+ }, (long) Molehunt.CONFIG.getBorderShrinkingStartingTimeOffset() * 60);
}
final var title = new TitleS2CPacket(Text.translatable("molehunt.game.start.suspense"));