From 696f9e8261aa351147260f06ad2cc6125edb3581 Mon Sep 17 00:00:00 2001 From: Eldritch-Oliver Date: Sat, 4 Oct 2025 19:42:27 -0600 Subject: [PATCH] Remove context menu action that is deprecated --- module/apps/PlayerSheet.mjs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/module/apps/PlayerSheet.mjs b/module/apps/PlayerSheet.mjs index 56b8744..257182a 100644 --- a/module/apps/PlayerSheet.mjs +++ b/module/apps/PlayerSheet.mjs @@ -78,15 +78,6 @@ export class PlayerSheet extends HandlebarsApplicationMixin(ActorSheetV2) { 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; };