foundry-vtt-types
foundry-vtt-types copied to clipboard
Update title.mjs for Foundry VTT v10.288
To Change
width and height field definitions
Kind of Change
Update
Additional Info
diff '--color=auto' -r FoundryVTT-10.287/resources/app/common/documents/tile.mjs FoundryVTT-10.288/resources/app/common/documents/tile.mjs
69,70c69,70
< width: new fields.NumberField({required: true, positive: true, nullable: false, step: 0.1}),
< height: new fields.NumberField({required: true, positive: true, nullable: false, step: 0.1}),
---
> width: new fields.NumberField({required: true, min: 0, nullable: false, step: 0.1}),
> height: new fields.NumberField({required: true, min: 0, nullable: false, step: 0.1}),