From aff5e229408e829fce1d1fdfc9045c3ba6f29bc7 Mon Sep 17 00:00:00 2001 From: daedalus Date: Sun, 15 Nov 2009 09:50:09 +0000 Subject: [PATCH] - Monsters will be able to walk through dead players (http://www.runuo.com/bugs/index.php?cmd=view&id=131) --- Scripts/Mobiles/PlayerMobile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Mobiles/PlayerMobile.cs b/Scripts/Mobiles/PlayerMobile.cs index 3cf823073..d26a0fcb6 100644 --- a/Scripts/Mobiles/PlayerMobile.cs +++ b/Scripts/Mobiles/PlayerMobile.cs @@ -1716,7 +1716,7 @@ namespace Server.Mobiles public override bool OnMoveOver( Mobile m ) { - if ( m is BaseCreature && !((BaseCreature)m).Controlled ) + if ( Alive && m is BaseCreature && !((BaseCreature)m).Controlled ) return false; return base.OnMoveOver( m );