From fbe1583e50441f242387f771b3b11259ad857903 Mon Sep 17 00:00:00 2001 From: Artem Date: Mon, 27 Jan 2025 03:37:08 +0300 Subject: [PATCH] fix: prevent folded vehicle item duplication on unfold (#5990) missing flags --- data/json/items/tool/deployable.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/json/items/tool/deployable.json b/data/json/items/tool/deployable.json index 504c23c72c3e..efb3059ec916 100644 --- a/data/json/items/tool/deployable.json +++ b/data/json/items/tool/deployable.json @@ -115,7 +115,7 @@ "practice": 0, "done_message": "You unfold the cot and place it on the ground." }, - "flags": [ "ALLOWS_REMOTE_USE" ] + "flags": [ "ALLOWS_REMOTE_USE", "DESTROY_ON_DECHARGE" ] }, { "id": "folding_bicycle", @@ -138,7 +138,7 @@ "unfold_msg": "You painstakingly unfold the bicycle and make it ready to ride.", "moves": 500 }, - "flags": [ "ALLOWS_REMOTE_USE" ] + "flags": [ "ALLOWS_REMOTE_USE", "DESTROY_ON_DECHARGE" ] }, { "id": "folding_skateboard", @@ -161,7 +161,7 @@ "unfold_msg": "You lay the skateboard down on the ground.", "moves": 0 }, - "flags": [ "ALLOWS_REMOTE_USE" ] + "flags": [ "ALLOWS_REMOTE_USE", "DESTROY_ON_DECHARGE" ] }, { "id": "generic_folded_vehicle", @@ -217,7 +217,7 @@ "unfold_msg": "You painstakingly unfold, inflate, and launch the %s.", "moves": 15000 }, - "flags": [ "ALLOWS_REMOTE_USE" ] + "flags": [ "ALLOWS_REMOTE_USE", "DESTROY_ON_DECHARGE" ] }, { "id": "metal_smoking_rack",