v0.2.3: updated TODOs

This commit is contained in:
Evan Debenham 2014-12-16 17:08:30 -05:00
parent 0dcdb66fad
commit cd8e11b311
5 changed files with 1 additions and 6 deletions

View File

@ -1148,7 +1148,7 @@ public class Hero extends Char {
@Override @Override
public void add( Buff buff ) { public void add( Buff buff ) {
//TODO: test this, may break some things
if (buff(TimekeepersHourglass.timeStasis.class) != null) if (buff(TimekeepersHourglass.timeStasis.class) != null)
return; return;

View File

@ -21,7 +21,6 @@ import java.util.Collections;
* Created by debenhame on 24/11/2014. * Created by debenhame on 24/11/2014.
*/ */
public class AlchemistsToolkit extends Artifact { public class AlchemistsToolkit extends Artifact {
//TODO: sprite
{ {
name = "Alchemists Toolkit"; name = "Alchemists Toolkit";

View File

@ -260,8 +260,6 @@ public class DriedRose extends Artifact {
} }
//TODO: needs to:
//have combat stats
public static class GhostHero extends NPC { public static class GhostHero extends NPC {
{ {

View File

@ -23,7 +23,6 @@ import java.util.ArrayList;
* Created by debenhame on 01/12/2014. * Created by debenhame on 01/12/2014.
*/ */
public class TimekeepersHourglass extends Artifact { public class TimekeepersHourglass extends Artifact {
//TODO: display logic, sprites.
private static final String TXT_HGLASS = "Timekeeper's Hourglass"; private static final String TXT_HGLASS = "Timekeeper's Hourglass";
private static final String TXT_STASIS = "Put myself in stasis"; private static final String TXT_STASIS = "Put myself in stasis";

View File

@ -595,7 +595,6 @@ public abstract class Level implements Bundlable {
} }
//TODO: test this thoroughly
if ((map[cell] == Terrain.ALCHEMY) && ( if ((map[cell] == Terrain.ALCHEMY) && (
!(item instanceof Plant.Seed || item instanceof Blandfruit) || !(item instanceof Plant.Seed || item instanceof Blandfruit) ||
item instanceof BlandfruitBush.Seed || item instanceof BlandfruitBush.Seed ||