foundry-vtt-types icon indicating copy to clipboard operation
foundry-vtt-types copied to clipboard

Update title.mjs for Foundry VTT v10.288

Open kmoschcau opened this issue 3 years ago • 0 comments

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}),

kmoschcau avatar Oct 16 '22 14:10 kmoschcau