Convert distance fields to integer #845
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Converts all distance-related fields from
FloatFieldtoIntegerFieldto eliminate floating-point precision issues (like0.00000001) in API responses. All distance values are whole numbers (feet), so integers are more appropriate and avoid precision artifacts. Touch fields converted from0.1to0.Model Changes
distance_field()now returnsIntegerFieldinstead ofFloatFieldIMPORTANT MERGE ORDER NOTE
This PR must be merged AFTER PR #844 (fix/spell-data-regressions-pr842) to avoid migration conflicts.
Note
Summary
FloatFieldtoIntegerFieldviadistance_field()change and migration (creature,creatureactionattack,size.space_diameter,spell.range/shape_size,spellcastingoption.shape_size,weapon.range/long_range).HasSpeedmethods to use integer math (//) and return integers; adjustsspeed_allserializer field types to integers (nullable where applicable).reach,walk/fly/climb/swim, vision ranges, spell ranges, weapon ranges, sizespace_diameter).Written by Cursor Bugbot for commit 50ac18e. This will update automatically on new commits. Configure here.