From 5f90ea1a0fa1216cb0fa3d050743c9818f4b48e1 Mon Sep 17 00:00:00 2001 From: "aranclanos@hotmail.com" Date: Mon, 31 Dec 2012 08:42:11 +0000 Subject: [PATCH] Runtime fix for moving around your hands a light tile. The new() proc of the light tiles missed some vars that the parent proc uses. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5434 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/items/stacks/tiles/light.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/tiles/light.dm b/code/game/objects/items/stacks/tiles/light.dm index 460db9b7662..8fdcd7a5618 100644 --- a/code/game/objects/items/stacks/tiles/light.dm +++ b/code/game/objects/items/stacks/tiles/light.dm @@ -14,7 +14,7 @@ var/on = 1 var/state //0 = fine, 1 = flickering, 2 = breaking, 3 = broken -/obj/item/stack/tile/light/New() +/obj/item/stack/tile/light/New(var/loc, var/amount=null) ..() if(prob(5)) state = 3 //broken