From 7b56f964d970d6a9d34972a5c9041a810e062f70 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 23 Jan 2021 18:27:07 -0500 Subject: [PATCH] v0.9.2: fixed unintended code commit that slowed ghoul death animations --- .../shatteredpixeldungeon/sprites/GhoulSprite.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/GhoulSprite.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/GhoulSprite.java index 59b6f00bd..b3e1121d6 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/GhoulSprite.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/GhoulSprite.java @@ -45,10 +45,10 @@ public class GhoulSprite extends MobSprite { attack = new Animation( 12, false ); attack.frames( frames, 0, 8, 9 ); - crumple = new Animation( 1, false); + crumple = new Animation( 15, false); crumple.frames( frames, 0, 10, 11, 12 ); - die = new Animation( 1, false ); + die = new Animation( 15, false ); die.frames( frames, 0, 10, 11, 12, 13 ); play( idle );