From c5498c66fa5dd715f7968b0cbe1445d456efedd6 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 8 Dec 2014 05:38:52 -0600 Subject: [PATCH] Add "size" to Zone.SetEntityAttribute --- zone/remote_call.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/zone/remote_call.cpp b/zone/remote_call.cpp index 82f11e7fc..056a20ec9 100644 --- a/zone/remote_call.cpp +++ b/zone/remote_call.cpp @@ -326,5 +326,6 @@ void handle_rc_set_entity_attribute(const std::string &method, const std::string if (ent){ if (params[1] == "race"){ ent->SendIllusionPacket(atoi(params[2].c_str())); } if (params[1] == "appearance_effect"){ ent->SendAppearanceEffect(atoi(params[2].c_str()), 0, 0, 0, 0); } + if (params[1] == "size"){ ent->ChangeSize(atoi(params[2].c_str())); } } } \ No newline at end of file