From d71e7cf23f01ca7bc788014c12580cb255fb5cc2 Mon Sep 17 00:00:00 2001 From: Qweqker Date: Fri, 21 Feb 2020 12:27:09 -0500 Subject: [PATCH] Added HCIM in the Iron Man explanation Added HCIM as an option to choose an Iron Man Recoloured the UIM text as a grey-white Coloured HCIM as the dark red colour UIM was Added the hardcoreDeath value to 0 --- .../src/plugin/tutorial/TutorialCompletionDialogue.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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: