From d5734b87ece413d31f550a379a5f4b945ad6b4da Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Thu, 7 Jan 2021 06:19:24 -0500 Subject: [PATCH] Adds a slight warning that you may have screwed up to the nuclear bomb (#15232) * Adds a slight warning that you may have screwed up * Update code/game/gamemodes/nuclear/nuclearbomb.dm Co-authored-by: Kyep <16434066+Kyep@users.noreply.github.com> Co-authored-by: Kyep <16434066+Kyep@users.noreply.github.com> --- code/game/gamemodes/nuclear/nuclearbomb.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/gamemodes/nuclear/nuclearbomb.dm b/code/game/gamemodes/nuclear/nuclearbomb.dm index 36159c28239..58a197c3302 100644 --- a/code/game/gamemodes/nuclear/nuclearbomb.dm +++ b/code/game/gamemodes/nuclear/nuclearbomb.dm @@ -68,6 +68,9 @@ GLOBAL_VAR(bomb_set) else to_chat(user, "You need to deploy [src] first.") return + else if(istype(O, /obj/item/disk/plantgene)) + to_chat(user, "You try to plant the disk, but despite rooting around, it won't fit! After you branch out to read the instructions, you find out where the problem stems from. You've been bamboo-zled, this isn't a nuclear disk at all!") + return return ..() /obj/machinery/nuclearbomb/crowbar_act(mob/user, obj/item/I)