From e7ec88986768ffe8067f78c434455a3e096def91 Mon Sep 17 00:00:00 2001 From: ArikSquad <75741608+ArikSquad@users.noreply.github.com> Date: Tue, 30 Dec 2025 17:59:21 +0200 Subject: [PATCH] fix: remove duplicate name from Maths Enjoyer dialogue --- .../type/hub/npcs/villagers/VillagerMathsEnjoyer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/type.hub/src/main/java/net/swofty/type/hub/npcs/villagers/VillagerMathsEnjoyer.java b/type.hub/src/main/java/net/swofty/type/hub/npcs/villagers/VillagerMathsEnjoyer.java index a2540f7ce..898e5c0c5 100644 --- a/type.hub/src/main/java/net/swofty/type/hub/npcs/villagers/VillagerMathsEnjoyer.java +++ b/type.hub/src/main/java/net/swofty/type/hub/npcs/villagers/VillagerMathsEnjoyer.java @@ -46,10 +46,10 @@ public DialogueSet[] dialogues(HypixelPlayer player) { return new DialogueSet[]{ DialogueSet.builder() .key("hello").lines(new String[]{ - "§e[NPC] Maths Enjoyer: §fHey if you really want to know...", - "§e[NPC] Maths Enjoyer: §fThe formula to §6Magical Power §fis...", - "§e[NPC] Maths Enjoyer: §dStats Mult. §f= §b29.97§e(§aln(§b0.0019§6MP§a+1)§e)^§b1.2", - "§e[NPC] Maths Enjoyer: §fHave fun with that!" + "§fHey if you really want to know...", + "§fThe formula to §6Magical Power §fis...", + "§dStats Mult. §f= §b29.97§e(§aln(§b0.0019§6MP§a+1)§e)^§b1.2", + "§fHave fun with that!" }).build() }; }