Merging Source v1.7.2: corrected sleeping typo

This commit is contained in:
Evan Debenham
2014-10-21 00:41:44 -04:00
parent 13afc9df8d
commit f352efded2
4 changed files with 10 additions and 11 deletions
@@ -31,7 +31,7 @@ public class MobSprite extends CharSprite {
@Override
public void update() {
sleeping = ch != null && ((Mob)ch).state == ((Mob)ch).SLEEPEING;
sleeping = ch != null && ((Mob)ch).state == ((Mob)ch).SLEEPING;
super.update();
}