changed setHardcoreDeath as false to represent the change to a boolean variable

removed comment about unnecessary line as I think it is now necessary
This commit is contained in:
Qweqker 2020-02-21 20:34:54 -05:00
parent 8c486b976c
commit 5cdbab2117

View file

@ -201,7 +201,7 @@ public class TutorialCompletionDialogue extends DialoguePlugin {
case 3:
npc("You have chosen the " + (buttonId == 1 ? "Standard" : (buttonId == 2 ? "<col=8A0808>Hardcore</col>" : "<col=ECEBEB>Ultimate</col>")) + " Ironman mode.");
player.setAttribute("ironMode", IronmanMode.values()[buttonId]);
player.getSavedData().getActivityData().setHardcoreDeath(0); //might not be necessary?
player.getSavedData().getActivityData().setHardcoreDeath(false);
stage = 516;
break;
case 4: