From a671213d5da3526752c823ed85640b5eb15e4a8f Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 29 Jul 2021 00:11:01 +0200 Subject: [PATCH] [MIRROR] Fixes the map sprite for lizard plushes (#7204) * Fixes the map sprite for lizard plushes (#60416) This PR fixes the placeholder map sprite for lizard plushes. I included a map sprite in my original GAGS PR but I forgot a single character from the icon_state which made it not work and I didn't realize until after it was merged. * Fixes the map sprite for lizard plushes Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- code/datums/greyscale/json_configs/plushie_lizard.json | 2 +- code/game/objects/items/plushes.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/greyscale/json_configs/plushie_lizard.json b/code/datums/greyscale/json_configs/plushie_lizard.json index 47e86a61d8a..5326beac0b1 100644 --- a/code/datums/greyscale/json_configs/plushie_lizard.json +++ b/code/datums/greyscale/json_configs/plushie_lizard.json @@ -1,5 +1,5 @@ { - "": [ + "map_plushie_lizard": [ { "type": "icon_state", "icon_state": "plushie_lizard_body", diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index 841b5d834e5..c99bdfd2f64 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -502,7 +502,7 @@ /obj/item/toy/plush/lizard_plushie name = "lizard plushie" desc = "An adorable stuffed toy that resembles a lizardperson." - icon_state = "map_pushie_lizard" + icon_state = "map_plushie_lizard" greyscale_config = /datum/greyscale_config/plush_lizard attack_verb_continuous = list("claws", "hisses", "tail slaps") attack_verb_simple = list("claw", "hiss", "tail slap")