v2.5.0: fixed happy end badges not being added to local badges

This commit is contained in:
Evan Debenham
2024-06-16 10:12:07 -04:00
parent fae083d737
commit 1c2e5e9bea

View File

@@ -1000,9 +1000,11 @@ public class Badges {
}
public static void validateHappyEnd() {
local.add( Badge.HAPPY_END );
displayBadge( Badge.HAPPY_END );
if( Dungeon.hero.belongings.getItem(RemainsItem.class) != null ){
local.add( Badge.HAPPY_END_REMAINS );
displayBadge( Badge.HAPPY_END_REMAINS );
}
}