From cd8e11b311362807a9c74fa5b4a8371497a861f1 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 16 Dec 2014 17:08:30 -0500 Subject: [PATCH] v0.2.3: updated TODOs --- .../shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java | 2 +- .../items/artifacts/AlchemistsToolkit.java | 1 - .../shatteredpixeldungeon/items/artifacts/DriedRose.java | 2 -- .../items/artifacts/TimekeepersHourglass.java | 1 - src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java | 1 - 5 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java index 47148ddd2..d5c4556d0 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java @@ -1148,7 +1148,7 @@ public class Hero extends Char { @Override public void add( Buff buff ) { - //TODO: test this, may break some things + if (buff(TimekeepersHourglass.timeStasis.class) != null) return; diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/AlchemistsToolkit.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/AlchemistsToolkit.java index ec7da178b..a84a09889 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/AlchemistsToolkit.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/AlchemistsToolkit.java @@ -21,7 +21,6 @@ import java.util.Collections; * Created by debenhame on 24/11/2014. */ public class AlchemistsToolkit extends Artifact { - //TODO: sprite { name = "Alchemists Toolkit"; diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java index 053f061d7..47439f5a8 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java @@ -260,8 +260,6 @@ public class DriedRose extends Artifact { } - //TODO: needs to: - //have combat stats public static class GhostHero extends NPC { { diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/TimekeepersHourglass.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/TimekeepersHourglass.java index 08ed132f1..6864bc511 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/TimekeepersHourglass.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/TimekeepersHourglass.java @@ -23,7 +23,6 @@ import java.util.ArrayList; * Created by debenhame on 01/12/2014. */ public class TimekeepersHourglass extends Artifact { - //TODO: display logic, sprites. private static final String TXT_HGLASS = "Timekeeper's Hourglass"; private static final String TXT_STASIS = "Put myself in stasis"; diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java index 5b586a1c6..cf2ec4384 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java @@ -595,7 +595,6 @@ public abstract class Level implements Bundlable { } - //TODO: test this thoroughly if ((map[cell] == Terrain.ALCHEMY) && ( !(item instanceof Plant.Seed || item instanceof Blandfruit) || item instanceof BlandfruitBush.Seed ||