Don't send ChangeModel to clients which do not support it. (Thanks 123DMWM)

This commit is contained in:
UnknownShadow200 2016-05-01 09:57:59 +10:00
parent 402994e4ac
commit 4e3e004b8b

View File

@ -143,7 +143,7 @@ namespace MCGalaxy
}
if (p.model != "humanoid") SendChangeModel(p.id, p.model);
if (hasChangeModel && model != "humanoid")
if (p.hasChangeModel && model != "humanoid")
p.SendChangeModel(id, model);
}