OnEntityFlagsNetworkUpdate
Usage​
- Called after an entity's flags have been updated on the server, before they are sent over the network
- Return a non-null value to override default behavior
Examples​
""
object OnEntityFlagsNetworkUpdate(BaseEntity entity)
{
Puts("OnEntityFlagsNetworkUpdate works!");
return null;
}