File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 33name =" netfox.extras"
44description =" Game-specific utilities for Netfox"
55author =" Tamas Galffy and contributors"
6- version =" 1.33.0 "
6+ version =" 1.33.1 "
77script =" netfox-extras.gd"
Original file line number Diff line number Diff line change 33name =" netfox.internals"
44description =" Shared internals for netfox addons"
55author =" Tamas Galffy and contributors"
6- version =" 1.33.0 "
6+ version =" 1.33.1 "
77script =" plugin.gd"
Original file line number Diff line number Diff line change 33name =" netfox.noray"
44description =" Bulletproof your connectivity with noray integration for netfox"
55author =" Tamas Galffy and contributors"
6- version =" 1.33.0 "
6+ version =" 1.33.1 "
77script =" netfox-noray.gd"
Original file line number Diff line number Diff line change 33name =" netfox"
44description =" Shared internals for netfox addons"
55author =" Tamas Galffy and contributors"
6- version =" 1.33.0 "
6+ version =" 1.33.1 "
77script =" netfox.gd"
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ func _submit_state(bytes: PackedByteArray) -> void:
221221 # Don't compare past last event, as to not cancel events the host simply doesn't know about
222222 var latest_tick = maxi (last_known_tick , NetworkRollback .history_start )
223223
224- for tick in range (earliest_tick , latest_tick ):
224+ for tick in range (earliest_tick , latest_tick + 1 ):
225225 var is_tick_active = active_ticks .has (tick )
226226 if is_tick_active != is_active (tick ):
227227 _queued_changes [tick ] = is_tick_active
You can’t perform that action at this time.
0 commit comments