From 8e645bfdbf14fb5f5028c035f82068752e3c431f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 9 Dec 2014 19:02:42 -0500 Subject: [PATCH] v0.2.3: actually removed cloak of shadows from standard drops. --- .../shatteredpixel/shatteredpixeldungeon/items/Generator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java index 8f13a3672..6d9d189b7 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java @@ -350,7 +350,7 @@ public class Generator { //resets artifact probabilities, for new dungeons public static void initArtifacts() { - Category.ARTIFACT.probs = new float[]{ 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0 }; + Category.ARTIFACT.probs = new float[]{ 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0 }; spawnedArtifacts = new ArrayList(); }