diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java index 2f1231c71..ede09dd28 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java @@ -304,7 +304,7 @@ public enum HeroClass { return Assets.Sprites.HUNTRESS; case DUELIST: return Assets.Sprites.DUELIST; - case CLERIC: //TODO CLERIC finish sprite sheet + case CLERIC: return Assets.Sprites.CLERIC; } } @@ -321,7 +321,7 @@ public enum HeroClass { return Assets.Splashes.HUNTRESS; case DUELIST: return Assets.Splashes.DUELIST; - case CLERIC: //TODO CLERIC finish cleric splash + case CLERIC: return Assets.Splashes.CLERIC; } } diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/SurfaceScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/SurfaceScene.java index 441cf7480..690633c09 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/SurfaceScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/SurfaceScene.java @@ -413,7 +413,6 @@ public class SurfaceScene extends PixelScene { public Avatar( HeroClass cl ) { super( Assets.Sprites.AVATARS ); - //TODO CLERIC victory sprite frame( new TextureFilm( texture, WIDTH, HEIGHT ).get( cl.ordinal() ) ); } }