fix bodybag id case (#26823)

* Fix body bag id

* migration
This commit is contained in:
lzk
2024-04-08 16:27:26 +02:00
committed by GitHub
parent a9df8cf18a
commit 7188b509df
4 changed files with 9 additions and 5 deletions

View File

@@ -117,7 +117,7 @@
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- id: BodyBag_Folded - id: BodyBagFolded
amount: 4 amount: 4
- type: Sprite - type: Sprite
layers: layers:

View File

@@ -1,5 +1,5 @@
- type: entity - type: entity
id: BodyBag_Container id: BodyBag
parent: BaseFoldable parent: BaseFoldable
name: body bag name: body bag
description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition.
@@ -83,10 +83,10 @@
price: 50 price: 50
- type: entity - type: entity
id: BodyBag_Folded id: BodyBagFolded
name: body bag name: body bag
description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition.
parent: BodyBag_Container parent: BodyBag
suffix: folded suffix: folded
components: components:
- type: Foldable - type: Foldable

View File

@@ -49,7 +49,7 @@
- type: latheRecipe - type: latheRecipe
id: BodyBag id: BodyBag
result: BodyBag_Folded result: BodyBagFolded
completetime: 2 completetime: 2
materials: materials:
Plastic: 300 Plastic: 300

View File

@@ -275,3 +275,7 @@ ClothingOuterArmorScaf: ClothingOuterArmorBasic
ClothingNeckFlowerWreath: ClothingHeadHatFlowerWreath ClothingNeckFlowerWreath: ClothingHeadHatFlowerWreath
ClothingHeadHatFlowerCrown: ClothingHeadHatFlowerWreath ClothingHeadHatFlowerCrown: ClothingHeadHatFlowerWreath
BriefcaseSyndieBase: null BriefcaseSyndieBase: null
# 2024-04-08
BodyBag_Container: BodyBag
BodyBag_Folded: BodyBagFolded