v2.4.0: fixed trinket catalyst spawning after sewers on existing runs
This commit is contained in:
@@ -575,12 +575,12 @@ public class Dungeon {
|
|||||||
|
|
||||||
public static boolean intStoneNeeded(){
|
public static boolean intStoneNeeded(){
|
||||||
//one stone on floors 1-3
|
//one stone on floors 1-3
|
||||||
return !LimitedDrops.INT_STONE.dropped() && Random.Int(4-depth) == 0;
|
return depth < 5 && !LimitedDrops.INT_STONE.dropped() && Random.Int(4-depth) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean trinketCataNeeded(){
|
public static boolean trinketCataNeeded(){
|
||||||
//one trinket catalyst on floors 1-3
|
//one trinket catalyst on floors 1-3
|
||||||
return !LimitedDrops.TRINKET_CATA.dropped() && Random.Int(4-depth) == 0;
|
return depth < 5 && !LimitedDrops.TRINKET_CATA.dropped() && Random.Int(4-depth) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean labRoomNeeded(){
|
public static boolean labRoomNeeded(){
|
||||||
|
|||||||
Reference in New Issue
Block a user