Notify for localhost?

Am I stupid here? Currently it’s my understanding that RepNotify values that change are not notified to the localhost ?? Which seems pretty crazy to me, because that means there are different code paths for server, client and localhost.

Would it not be simply to call Notifies on localhost as well, that way you’d get two code paths, client and server, which is what you would expect to have in a client/server setup.

Or am I missing something?

Just wondering if anyone else has thought about this.

The RepNotify variables do not trigger their notification function when you change them on the local machine. They are only triggered when the value is changed by a remote machine(server).
This way you know who changed the value.
You can create a setter(Set My Value function) to call your notification event if you need to.