| 234 | } |
| 235 | |
| 236 | static void UpdateLocation(EntityID id, struct LocationUpdate* update) { |
| 237 | struct Entity* e = Entities.List[id]; |
| 238 | if (e) { e->VTABLE->SetLocation(e, update); } |
| 239 | } |
| 240 | |
| 241 | static void UpdateUserType(struct HacksComp* hacks, cc_uint8 value) { |
| 242 | cc_bool isOp = value >= 100 && value <= 127; |
no outgoing calls
no test coverage detected