Skip to content

Commit

Permalink
fix: prevent folded vehicle item duplication on unfold (#5990)
Browse files Browse the repository at this point in the history
missing flags
  • Loading branch information
Goredell authored Jan 27, 2025
1 parent c49058c commit fbe1583
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions data/json/items/tool/deployable.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit fbe1583

Please sign in to comment.