Skip to content

Commit 9a8f04f

Browse files
authored
fix: Eliminate partial sync on non-rollback-aware nodes (#524)
1 parent c1a1855 commit 9a8f04f

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

addons/netfox.extras/plugin.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
name="netfox.extras"
44
description="Game-specific utilities for Netfox"
55
author="Tamas Galffy and contributors"
6-
version="1.33.3"
6+
version="1.33.4"
77
script="netfox-extras.gd"

addons/netfox.internals/plugin.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
name="netfox.internals"
44
description="Shared internals for netfox addons"
55
author="Tamas Galffy and contributors"
6-
version="1.33.3"
6+
version="1.33.4"
77
script="plugin.gd"

addons/netfox.noray/plugin.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
name="netfox.noray"
44
description="Bulletproof your connectivity with noray integration for netfox"
55
author="Tamas Galffy and contributors"
6-
version="1.33.3"
6+
version="1.33.4"
77
script="netfox-noray.gd"

addons/netfox/plugin.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
name="netfox"
44
description="Shared internals for netfox addons"
55
author="Tamas Galffy and contributors"
6-
version="1.33.3"
6+
version="1.33.4"
77
script="netfox.gd"

addons/netfox/rollback/composite/rollback-history-transmitter.gd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ func transmit_state(tick: int) -> void:
134134
return
135135

136136
_latest_state_tick = max(_latest_state_tick, tick)
137-
_state_history.merge(full_state, tick)
138137

139138
var is_sending_diffs := NetworkRollback.enable_diff_states
140139
var is_full_state_tick := not is_sending_diffs or (full_state_interval > 0 and tick > _next_full_state_tick)

0 commit comments

Comments
 (0)