aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLéo Kosman <leo.kosman@proton.me>2024-08-22 23:35:37 +0200
committerLéo Kosman <leo.kosman@proton.me>2024-08-22 23:35:37 +0200
commitb504d77be3eafe23dbbab6c69ca9f23aca6111fe (patch)
tree38dbcee47e5860a8ff58a9ffd7046b6b27aaf7bd
parentb1b716f8265b730dec82eafea33bfc1cfc33b0bd (diff)
style: revert subtitle back to *The* moles
-rw-r--r--src/main/java/world/anhgelus/molehunt/Game.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/world/anhgelus/molehunt/Game.java b/src/main/java/world/anhgelus/molehunt/Game.java
index bf0f294..b116b72 100644
--- a/src/main/java/world/anhgelus/molehunt/Game.java
+++ b/src/main/java/world/anhgelus/molehunt/Game.java
@@ -7,7 +7,6 @@ import net.minecraft.network.packet.s2c.play.TitleS2CPacket;
import net.minecraft.server.MinecraftServer;
import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.text.Text;
-import net.minecraft.text.TextContent;
import net.minecraft.world.GameMode;
import net.minecraft.world.GameRules;
import world.anhgelus.molehunt.utils.TimeUtils;
@@ -136,7 +135,7 @@ public class Game {
} else {
winner = new TitleS2CPacket(Text.of("§aNot the Mole!"));
}
- pm.sendToAll(new SubtitleS2CPacket(Text.of("§6Moles were " + getMolesAsString())));
+ pm.sendToAll(new SubtitleS2CPacket(Text.of("§6The Moles were " + getMolesAsString())));
pm.sendToAll(winner);
pm.sendToAll(timing);
}