From 1a2a8f4fdda273bebf90e2d574fe5ead3e13367f Mon Sep 17 00:00:00 2001 From: VerySoft Date: Sun, 30 Jan 2022 22:59:17 -0500 Subject: [PATCH] Nerfs Plushie spam increased to 15 seconds from 1 second --- code/game/objects/items/toys/toys.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/toys/toys.dm b/code/game/objects/items/toys/toys.dm index e428ddfc54..dc5a811a0e 100644 --- a/code/game/objects/items/toys/toys.dm +++ b/code/game/objects/items/toys/toys.dm @@ -945,7 +945,7 @@ else searching = FALSE - if(world.time - last_message <= 1 SECOND) + if(world.time - last_message <= 15 SECONDS) return if(user.a_intent == I_HELP) user.visible_message("\The [user] hugs [src]!","You hug [src]!")