From 8f5bddbb324f1d319d83383e9e53e502940f30dc Mon Sep 17 00:00:00 2001 From: Markolie Date: Sun, 22 Feb 2015 22:29:58 +0100 Subject: [PATCH] Fix compile error --- code/game/objects/structures/tables_racks.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index 7bec1529dd5..da7e049ef65 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -591,8 +591,8 @@ I.Move(loc) var/list/click_params = params2list(params) //Center the icon where the user clicked. - W.pixel_x = (text2num(click_params["icon-x"]) - 16) - W.pixel_y = (text2num(click_params["icon-y"]) - 16) + I.pixel_x = (text2num(click_params["icon-x"]) - 16) + I.pixel_y = (text2num(click_params["icon-y"]) - 16) //if(W && W.loc) W.loc = src.loc return 1