Atomicity of array changes across the network

Hi, I’d like to confirm whether multiple modifications to an int32 array within the same frame are guaranteed to be received by the client in same frame.

For example:

Both the server and client start with the array {1}.
In a single server frame, the server adds 2 and 3 and removes 1.

Will the client receive the full set of changes within one frame, ensuring that its array becomes {2, 3}?

As far as I remember, RepNotify variables are executed at the end of the frame. This means the client will only receive the latest value (an array with all the changes that were made in the frame).

Use RPC events if you want to notify about every step.

This is what I needed, thx!