After creating a new "class" item, clicking "+ add new equipment group" does not do anything.
There is an error in the console:
Uncaught (in promise) TypeError: update.system is undefined
_onClickClassControl /systems/dungeonworld/module/item/item-sheet.js:288
I briefly investigated it, in case it helps:
In line 288, update.system.equipment is called.
update does not have a system property, but it has an equipment property. Directly calling update.equipment solves the TypeError and renders the equipment-group in the class window.
However, it also produces some modelValidation errors, and dragging items into the equipment group does not work. Also, the equipment group renders in every tab of the class window, so that's probably the wrong hierarchy or something.
In GitLab by @Graffini on Sep 11, 2022, 10:27
After creating a new "class" item, clicking "+ add new equipment group" does not do anything. There is an error in the console:
I briefly investigated it, in case it helps: In line 288,
update.system.equipment
is called.update
does not have asystem
property, but it has anequipment
property. Directly callingupdate.equipment
solves the TypeError and renders the equipment-group in the class window. However, it also produces some modelValidation errors, and dragging items into the equipment group does not work. Also, the equipment group renders in every tab of the class window, so that's probably the wrong hierarchy or something.