Fixes some phasing issuses.

This commit is contained in:
hondacrx
2022-07-25 14:03:51 -04:00
parent e4f31667a8
commit 9278f0b3c7
4 changed files with 11 additions and 5 deletions
@@ -85,7 +85,7 @@ namespace Game.Chat
[Command("despawngroup", RBACPermissions.CommandGobjectDespawngroup)]
static bool HandleGameObjectDespawnGroup(CommandHandler handler, string[] opts)
{
if (opts.Empty())
if (opts == null || opts.Empty())
return false;
bool deleteRespawnTimes = false;