From ad1f18306b99a802b7c8751e1875dafda1df4a7b Mon Sep 17 00:00:00 2001 From: Paul Coene Date: Mon, 3 Feb 2020 13:47:16 -0500 Subject: [PATCH] Update command.cpp Fix #size command to be useful for anyone using the model field in npc_types. All will remain the same for everyone else. --- zone/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/command.cpp b/zone/command.cpp index 877529c2b..757e2d522 100755 --- a/zone/command.cpp +++ b/zone/command.cpp @@ -2543,7 +2543,7 @@ void command_size(Client *c, const Seperator *sep) else if (!target) c->Message(Chat::White,"Error: this command requires a target"); else { - uint16 Race = target->GetRace(); + uint16 Race = target->GetModel(); uint8 Gender = target->GetGender(); uint8 Texture = 0xFF; uint8 HelmTexture = 0xFF;