From 6579420da47f386f40ea332a9f5fe3c0f5459fad Mon Sep 17 00:00:00 2001 From: "vageyenaman@gmail.com" Date: Mon, 19 Dec 2011 19:18:41 +0000 Subject: [PATCH] Quickfix for a derp I made with cloners. Somehow I created a hud with constructor parameter of the cloning machine. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2745 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/machinery/cloning.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index 5d377d9b50f..9484b389fd7 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -128,7 +128,7 @@ ghost.client.mob = src.occupant - src.occupant.hud_used = new/obj/hud( src ) + src.occupant.hud_used = new/obj/hud( src.occupant ) // probably redundant because previous line calls mob/Login() which does this line of code // but until this is proven useless keep it for safety - Doohl