diff --git a/Server/src/plugin/tutorial/TutorialCompletionDialogue.java b/Server/src/plugin/tutorial/TutorialCompletionDialogue.java index 821d77fea..451c4a5cc 100644 --- a/Server/src/plugin/tutorial/TutorialCompletionDialogue.java +++ b/Server/src/plugin/tutorial/TutorialCompletionDialogue.java @@ -198,13 +198,10 @@ public class TutorialCompletionDialogue extends DialoguePlugin { switch (buttonId) { case 1: case 2: - npc("You have chosen the " + (buttonId == 1 ? "Standard" : "Hardcore" + " Ironman mode.")); - player.setAttribute("ironMode", IronmanMode.values()[buttonId]); - stage = 516; - break; case 3: - npc("You have chosen the Ultimate Ironman mode."); - player.setAttribute("ironMode", IronmanMode.ULTIMATE); + npc("You have chosen the " + (buttonId == 1 ? "Standard" : (buttonId == 2 ? "Hardcore" : "Ultimate")) + " Ironman mode."); + player.setAttribute("ironMode", IronmanMode.values()[buttonId]); + player.getSavedData().getActivityData().setHardcoreDeath(0); stage = 516; break; case 4: