From 07517658e7c48326e699c36342cdbbd24f64b6a7 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sat, 23 Mar 2024 13:00:26 -0600 Subject: [PATCH] Remove transportation as a location value --- module/models/Item/CommonItemData.mjs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/module/models/Item/CommonItemData.mjs b/module/models/Item/CommonItemData.mjs index e926b44..82b72bf 100644 --- a/module/models/Item/CommonItemData.mjs +++ b/module/models/Item/CommonItemData.mjs @@ -42,12 +42,8 @@ export class CommonItemData extends foundry.abstract.TypeDataModel { "inventory" = on player, equivalent to being put in a backpack "storage" = not on player at all, in a chest in their house or smth, these items should be displayed in the storage tab - "transportation" = not on player, in some form of transportation, - these items should be hidden on the sheet and the items that - are on a transportation should be referenced by UUID in that - transportation item */ - choices: ["equipped", "inventory", "storage", "transportation"], + choices: ["equipped", "inventory", "storage"], }), }; };