Refactoring Cleanup

This commit is contained in:
hondacrx
2020-02-03 14:42:20 -05:00
parent 2a065d22da
commit 752137af52
37 changed files with 107 additions and 157 deletions
@@ -220,7 +220,6 @@ namespace Game.Chat
string param1 = args.NextString();
string param2 = args.NextString();
uint encounterId = 0;
Player player = null;
// Character name must be provided when using this from console.
@@ -257,7 +256,7 @@ namespace Game.Chat
return false;
}
if (!uint.TryParse(param1, out encounterId))
if (!uint.TryParse(param1, out uint encounterId))
return false;
if (encounterId > map.GetInstanceScript().GetEncounterCount())