diff --git a/Scripts/Engines/Spawner/Spawner.cs b/Scripts/Engines/Spawner/Spawner.cs index 18d0c0f43..8feefa41d 100644 --- a/Scripts/Engines/Spawner/Spawner.cs +++ b/Scripts/Engines/Spawner/Spawner.cs @@ -638,7 +638,7 @@ namespace Server.Mobiles { int val = ( ( ( coord > 0 ) ? coord : ( coord_this - range ) ) + ( Utility.Random( ( ( range * 2 ) + 1 ) + side ) ) ); - return ( val < 0 ) ? 0 : val; + return ( val < 1 ) ? 1 : val; } public Point3D GetSpawnPosition( ISpawnable spawned )