v0.9.4: updated sprite sheet constant for stone of fear change

This commit is contained in:
Evan Debenham 2021-08-03 21:58:27 -04:00
parent 57094acde4
commit 487f9fe6f5
2 changed files with 2 additions and 6 deletions

View File

@ -26,20 +26,16 @@ import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Charm;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Flare;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PathFinder;
public class StoneOfFear extends Runestone {
{
image = ItemSpriteSheet.STONE_AFFECTION;
image = ItemSpriteSheet.STONE_FEAR;
}
@Override

View File

@ -495,7 +495,7 @@ public class ItemSpriteSheet {
private static final int STONES = xy(1, 21); //16 slots
public static final int STONE_AGGRESSION = STONES+0;
public static final int STONE_AUGMENTATION = STONES+1;
public static final int STONE_AFFECTION = STONES+2;
public static final int STONE_FEAR = STONES+2;
public static final int STONE_BLAST = STONES+3;
public static final int STONE_BLINK = STONES+4;
public static final int STONE_CLAIRVOYANCE = STONES+5;