Remove context menu action that is deprecated

This commit is contained in:
Eldritch-Oliver 2025-10-04 19:42:27 -06:00
parent 72ebc0354d
commit 696f9e8261

View file

@ -78,15 +78,6 @@ export class PlayerSheet extends HandlebarsApplicationMixin(ActorSheetV2) {
return isGM || (allowPlayerEdits && editable); return isGM || (allowPlayerEdits && editable);
}, },
}); });
controls.push({
icon: `fa-solid fa-crop-simple`,
label: `Configure Size`,
action: `sizeSettings`,
visible: () => {
const isGM = game.user.isGM;
return isGM;
},
});
return controls; return controls;
}; };