what ensures that a RealtimeDictionary is reliable

When creating a custom dictionary property using
[RealtimeProperty(7, true, false)] private RealtimeDictionary<RealtimePlayerStatsModel> _playerStats;
changing the reliable parameter to true or false, does not seem to have any impact on the compiled model. What ensures that the dictionary is always reliable? Is this handled internally by normcore? Do you need to handle this case manually? Or is setting the values within
RealtimePlayerStatsModel
to reliable enough?
Was this page helpful?