Spell changes to support v1.7

This commit is contained in:
2023-02-01 10:15:56 +01:00
parent 05f09aa3f5
commit 4b9c3bcd1e
3 changed files with 15 additions and 6 deletions

View File

@ -74,7 +74,7 @@
</select>
</div>
{{#each item.system.optionnalconditions as |cond idx|}}
{{#each item.system.properties.optionnalconditions as |cond idx|}}
{{#if (lt idx @root.item.system.properties.nboptionnalconditions)}}
<div class="property flexrow">
<label class="property-label">{{localize "BOL.ui.optionnalconditions"}} {{add idx 1}}</label>
@ -83,6 +83,8 @@
{{/if}}
{{/each}}
<h4><label class="property-label">{{localize "BOL.ui.magicnewrules"}} : </label></h4>
<div class="property flexrow">
<div class="form-fields center">
<label class="checkbox">
@ -94,4 +96,9 @@
<input class="field-value" type="checkbox" name="system.properties.concentrate" {{checked item.system.properties.concentrate}}> {{localize "BOL.ui.concentrate"}}
</label>
</div>
<div class="form-fields center">
<label class="checkbox">
<input class="field-value" type="checkbox" name="system.properties.aggressive" {{checked item.system.properties.aggressive}}> {{localize "BOL.ui.aggressive"}}
</label>
</div>
</div>