v0.9.2: fixed unintended code commit that slowed ghoul death animations

This commit is contained in:
Evan Debenham 2021-01-23 18:27:07 -05:00
parent f5124b2ccc
commit 7b56f964d9

View File

@ -45,10 +45,10 @@ public class GhoulSprite extends MobSprite {
attack = new Animation( 12, false ); attack = new Animation( 12, false );
attack.frames( frames, 0, 8, 9 ); attack.frames( frames, 0, 8, 9 );
crumple = new Animation( 1, false); crumple = new Animation( 15, false);
crumple.frames( frames, 0, 10, 11, 12 ); 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 ); die.frames( frames, 0, 10, 11, 12, 13 );
play( idle ); play( idle );