Update plugins

This commit is contained in:
Jackz 2023-08-07 22:29:19 -05:00
parent 8437b030c0
commit 46444c8693
No known key found for this signature in database
GPG key ID: E0BBD94CF657F603
16 changed files with 126 additions and 58 deletions

View file

@ -327,7 +327,8 @@ public Action Command_ManageWalls(int client, int args) {
if(id == -1) return Plugin_Handled;
int entity = GetWallEntity(id);
GetEntPropVector(entity, Prop_Send, "m_vecOrigin", origin);
GetEntPropVector(entity, Prop_Send, "m_vecAngles", angles);
if(HasEntProp(entity, Prop_Send, "m_vecAngles"))
GetEntPropVector(entity, Prop_Send, "m_vecAngles", angles);
GetEntPropVector(entity, Prop_Send, "m_vecMaxs", size);
Export(client, arg2, entity, origin, angles, size);
}