From: Ghagliiarghii <68826635+Ghagliiarghii@users.noreply.github.com> Date: Sat, 20 Apr 2024 21:32:24 +0000 (-0400) Subject: Fixed potential duplicate engraved lighter steal objective (#27177) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=380ace4ef0cbf0acfc754b45398f4162fdc6226f;p=space-station-14.git Fixed potential duplicate engraved lighter steal objective (#27177) * Fixed potential duplicate engraved lighter steal objective * Update Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml Co-authored-by: Tayrtahn * Implement pigeonpeas' suggestion * Also replaced the one if the vending machine, unsure if this vending machine is used or if vended items retain their fills, but figure can't hurt --------- Co-authored-by: Tayrtahn --- diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index 8885dce432..ebf267a9c2 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -7345,7 +7345,7 @@ entities: - type: Transform pos: 18.47467,24.458666 parent: 588 -- proto: ClothingOuterCoatDetective +- proto: ClothingOuterCoatDetectiveLoadout entities: - uid: 574 components: diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml index f45dd229a2..91e45c8391 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml @@ -4,7 +4,7 @@ ClothingUniformJumpsuitDetective: 2 ClothingUniformJumpskirtDetective: 2 ClothingShoesColorBrown: 2 - ClothingOuterCoatDetective: 2 + ClothingOuterCoatDetectiveLoadout: 2 ClothingHeadHatFedoraBrown: 2 ClothingUniformJumpsuitDetectiveGrey: 2 ClothingUniformJumpskirtDetectiveGrey: 2 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index c9316f4b3a..7a78eca2ff 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -31,6 +31,15 @@ Piercing: 0.70 Heat: 0.80 +- type: entity + parent: ClothingOuterCoatDetective + id: ClothingOuterCoatDetectiveLoadout + components: + - type: StorageFill + contents: + - id: SmokingPipeFilledTobacco + - id: FlippoLighter #Not the steal objective, only difference from normal detective trenchcoat + - type: entity parent: ClothingOuterStorageBase id: ClothingOuterCoatGentle diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml b/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml index c102277e45..c16d24e5b8 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml @@ -109,4 +109,4 @@ - type: startingGear id: DetectiveCoat equipment: - outerClothing: ClothingOuterCoatDetective \ No newline at end of file + outerClothing: ClothingOuterCoatDetectiveLoadout \ No newline at end of file