File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
client/src/game/ui/settings/shape Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ tech changes will usually be stripped from release notes for the public
9393- Initiative entries would remain blurred if the focused entry was removed by another player.
9494- Group system not properly cleaning up on location changes
9595- Group badges were not sorted numerically in a shape's group settings when set to the numbers character set.
96+ - Tracker input resets to last value if left empty
9697
9798## [ 2025.3]
9899
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ const trackers = computed(() => {
3333
3434function updateTracker(tracker : DeepReadonly <UiTracker >, delta : Partial <Tracker >, syncTo = true ): void {
3535 if (! owned .value || activeShapeStore .state .id === undefined ) return ;
36+ if (delta .value !== undefined && Number .isNaN (delta .value )) delta .value = tracker .value ;
37+ if (delta .maxvalue !== undefined && Number .isNaN (delta .maxvalue )) delta .maxvalue = tracker .maxvalue ;
3638
3739 if (tracker .temporary ) {
3840 trackerSystem .add (tracker .shape , { ... tracker }, SERVER_SYNC );
You can’t perform that action at this time.
0 commit comments