Default value for Spawn chase range should be set to 0.

This commit is contained in:
MobiusDevelopment
2022-08-14 21:04:53 +00:00
parent 1501be0179
commit d525e6007a
28 changed files with 103 additions and 3 deletions

View File

@@ -536,6 +536,10 @@ public class Spawn extends Location implements IIdentifiable, INamable
public int getChaseRange()
{
if (_spawnTemplate == null)
{
return 0;
}
return _spawnTemplate.getChaseRange();
}