V0.1.1: more work on lullaby.

This commit is contained in:
Evan Debenham
2014-08-13 00:26:16 -04:00
parent 52abd25647
commit 5c1526e430
3 changed files with 22 additions and 13 deletions
@@ -295,9 +295,11 @@ public abstract class Mob extends Char {
state = State.FLEEING;
} else if (buff instanceof Sleep || buff instanceof MagicalSleep) {
if (sprite != null) {
new Flare( 4, 32 ).color( 0x44ffff, true ).show( sprite, 2f ) ;
//new Flare( 4, 32 ).color( 0x44ffff, true ).show( sprite, 2f ) ;
this.sprite().showSleep();
}
state = State.SLEEPING;
this.sprite().showSleep();
postpone( Sleep.SWS );
}
}