From b723999741bfeb9a92236719625d1a86ee336c6e Mon Sep 17 00:00:00 2001 From: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> Date: Sun, 14 Nov 2021 23:26:49 -0600 Subject: [PATCH] clownfish --- code/modules/fish/fish_items.dm | 3 +++ code/modules/hydroponics/grown/banana.dm | 3 +++ 2 files changed, 6 insertions(+) diff --git a/code/modules/fish/fish_items.dm b/code/modules/fish/fish_items.dm index fbea6172ac6..c0d2ab76002 100644 --- a/code/modules/fish/fish_items.dm +++ b/code/modules/fish/fish_items.dm @@ -219,3 +219,6 @@ throwforce = 1 force = 1 attack_verb = list("slapped", "humiliated", "hit", "rubbed") + +/obj/item/grown/bananapeel/clownfish/choose_icon_state() + return diff --git a/code/modules/hydroponics/grown/banana.dm b/code/modules/hydroponics/grown/banana.dm index 4b15ced921c..3a6660f6f7c 100644 --- a/code/modules/hydroponics/grown/banana.dm +++ b/code/modules/hydroponics/grown/banana.dm @@ -52,6 +52,9 @@ /obj/item/grown/bananapeel/Initialize(mapload) . = ..() + choose_icon_state() + +/obj/item/grown/bananapeel/proc/choose_icon_state() icon_state = "[icon_state]_[rand(1, 3)]" /obj/item/grown/bananapeel/suicide_act(mob/user)