aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPalabola <Palabola@users.noreply.github.com>2016-10-26 23:14:38 +0200
committerShauren <shauren.trinity@gmail.com>2016-10-26 23:14:38 +0200
commitdbd3e68ce68851223d6e6519d9f647a2a7e1106c (patch)
tree9b913a9b8c90cb9b408503c4814c6466c01246d6 /src
parentc2d1e43b376834f98ee0b8b1938b99a9a357c00e (diff)
Command/Morph fix ModelId above 65535 (#18149)
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Commands/cs_modify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_modify.cpp b/src/server/scripts/Commands/cs_modify.cpp
index 3279e630042..2ef9cc22559 100644
--- a/src/server/scripts/Commands/cs_modify.cpp
+++ b/src/server/scripts/Commands/cs_modify.cpp
@@ -1026,7 +1026,7 @@ public:
if (!*args)
return false;
- uint16 display_id = (uint16)atoi((char*)args);
+ uint32 display_id = (uint32)atoi((char*)args);
Unit* target = handler->getSelectedUnit();
if (!target)