From 687860e3a20924369abfcced3ee23cb0fcac663b Mon Sep 17 00:00:00 2001 From: Robertha89 Date: Sun, 4 Oct 2015 03:33:31 +0200 Subject: [PATCH] Sudoku via pen --- code/modules/paperwork/pen.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm index 4f61c78c761..5269f51bf19 100644 --- a/code/modules/paperwork/pen.dm +++ b/code/modules/paperwork/pen.dm @@ -24,6 +24,9 @@ var/colour = "black" //what colour the ink is! pressure_resistance = 2 +/obj/item/weapon/pen/suicide_act(mob/user) + viewers(user) << "[user] starts scribbling over \himself with the [src.name]! It looks like \he's trying to commit sudoku." + return (BRUTELOSS) /obj/item/weapon/pen/blue name = "blue-ink pen" @@ -143,4 +146,4 @@ item_state = "edagger" else icon_state = initial(icon_state) //looks like a normal pen when off. - item_state = initial(item_state) \ No newline at end of file + item_state = initial(item_state)