From 7f14fc697bd62f33ec263bb0d54169804705ecf7 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 15 Sep 2022 13:32:37 -0400 Subject: [PATCH] v1.4.0: fixed chalice of blood having spawn rate of 0 instead of cloak --- .../shatteredpixel/shatteredpixeldungeon/items/Generator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java index d4f267c2a..b879bede5 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java @@ -472,7 +472,7 @@ public class Generator { TimekeepersHourglass.class, UnstableSpellbook.class }; - ARTIFACT.defaultProbs = new float[]{ 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1 }; + ARTIFACT.defaultProbs = new float[]{ 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1 }; ARTIFACT.probs = ARTIFACT.defaultProbs.clone(); } }