v0.2.4: updated TODOs
This commit is contained in:
parent
35e53457ff
commit
4cb2ca666c
|
@ -716,7 +716,7 @@ public class Badges {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: Replace this badge, Delayed to 0.2.3, for real this time
|
//TODO: Replace this badge, delayed until an eventual badge rework
|
||||||
public static void validateRingOfHaggler() {
|
public static void validateRingOfHaggler() {
|
||||||
if (!local.contains( Badge.RING_OF_HAGGLER )/* && new RingOfThorns().isKnown()*/) {
|
if (!local.contains( Badge.RING_OF_HAGGLER )/* && new RingOfThorns().isKnown()*/) {
|
||||||
Badge badge = Badge.RING_OF_HAGGLER;
|
Badge badge = Badge.RING_OF_HAGGLER;
|
||||||
|
@ -725,7 +725,7 @@ public class Badges {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: Replace this badge, Delayed to 0.2.3, for real this time
|
//TODO: Replace this badge, delayed until an eventual badge rework
|
||||||
public static void validateRingOfThorns() {
|
public static void validateRingOfThorns() {
|
||||||
if (!local.contains( Badge.RING_OF_THORNS )/* && new RingOfThorns().isKnown()*/) {
|
if (!local.contains( Badge.RING_OF_THORNS )/* && new RingOfThorns().isKnown()*/) {
|
||||||
Badge badge = Badge.RING_OF_THORNS;
|
Badge badge = Badge.RING_OF_THORNS;
|
||||||
|
|
|
@ -20,7 +20,6 @@ package com.shatteredpixel.shatteredpixeldungeon.actors.buffs;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
|
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
|
||||||
import com.watabou.utils.Bundle;
|
import com.watabou.utils.Bundle;
|
||||||
|
|
||||||
//TODO: consider refactoring this
|
|
||||||
public class SnipersMark extends FlavourBuff {
|
public class SnipersMark extends FlavourBuff {
|
||||||
|
|
||||||
public int object = 0;
|
public int object = 0;
|
||||||
|
|
|
@ -47,7 +47,6 @@ import com.watabou.utils.Bundle;
|
||||||
import com.watabou.utils.Random;
|
import com.watabou.utils.Random;
|
||||||
|
|
||||||
public class Goo extends Mob {
|
public class Goo extends Mob {
|
||||||
//todo: will need to manually recreate stuff from 1.7.5 here
|
|
||||||
{
|
{
|
||||||
name = "Goo";
|
name = "Goo";
|
||||||
HP = HT = 80;
|
HP = HT = 80;
|
||||||
|
|
|
@ -125,7 +125,7 @@ public class Viscosity extends Glyph {
|
||||||
|
|
||||||
target.damage( 1, this );
|
target.damage( 1, this );
|
||||||
if (target == Dungeon.hero && !target.isAlive()) {
|
if (target == Dungeon.hero && !target.isAlive()) {
|
||||||
// FIXME
|
|
||||||
Glyph glyph = new Viscosity();
|
Glyph glyph = new Viscosity();
|
||||||
Dungeon.fail( Utils.format( ResultDescriptions.GLYPH, glyph.name() ) );
|
Dungeon.fail( Utils.format( ResultDescriptions.GLYPH, glyph.name() ) );
|
||||||
GLog.n( "%s killed you...", glyph.name() );
|
GLog.n( "%s killed you...", glyph.name() );
|
||||||
|
|
|
@ -37,7 +37,6 @@ import com.shatteredpixel.shatteredpixeldungeon.windows.WndError;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.windows.WndRanking;
|
import com.shatteredpixel.shatteredpixeldungeon.windows.WndRanking;
|
||||||
import com.watabou.utils.GameMath;
|
import com.watabou.utils.GameMath;
|
||||||
|
|
||||||
//FIXME: need to modify this to properly account for new landscape logic, more than just a merge.
|
|
||||||
public class RankingsScene extends PixelScene {
|
public class RankingsScene extends PixelScene {
|
||||||
|
|
||||||
private static final String TXT_TITLE = "Top Rankings";
|
private static final String TXT_TITLE = "Top Rankings";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user