From 8a0802611e4bd85da290b544be6a055d1192f9c4 Mon Sep 17 00:00:00 2001 From: AndroidSFV Date: Sat, 14 Sep 2013 15:49:24 -0500 Subject: [PATCH] Uncommented pixel_x and pixel_y --- code/modules/paperwork/photocopier.dm | 4 ++++ code/modules/paperwork/photography.dm | 16 ++++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index dd0a03b8c58..3d90cd11dd0 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -105,6 +105,8 @@ p.name = photocopy.name p.desc = photocopy.desc p.scribble = photocopy.scribble + p.pixel_x = rand(-10, 10) + p.pixel_y = rand(-10, 10) p.blueprints = photocopy.blueprints //a copy of a picture is still good enough for the syndicate sleep(15) @@ -159,6 +161,8 @@ p.img = img p.desc = selection.fields["desc"] p.blueprints = selection.fields["blueprints"] + p.pixel_x = rand(-10, 10) + p.pixel_y = rand(-10, 10) toner -= 5 //AI prints color pictures only, thus they can do it more efficiently sleep(15) updateUsrDialog() diff --git a/code/modules/paperwork/photography.dm b/code/modules/paperwork/photography.dm index fdd7c99bd4b..8fff95f76b5 100644 --- a/code/modules/paperwork/photography.dm +++ b/code/modules/paperwork/photography.dm @@ -248,8 +248,8 @@ P.icon = ic P.img = temp P.desc = mobs -// P.pixel_x = rand(-10, 10) -// P.pixel_y = rand(-10, 10) + P.pixel_x = rand(-10, 10) + P.pixel_y = rand(-10, 10) if(blueprints) P.blueprints = 1 @@ -265,8 +265,8 @@ var/icon = ic var/img = temp var/desc = mobs -// var/pixel_x = rand(-10, 10) -// var/pixel_y = rand(-10, 10) + var/pixel_x = rand(-10, 10) + var/pixel_y = rand(-10, 10) if(blueprints) blueprints = 1 @@ -288,8 +288,8 @@ P.fields["icon"] = icon P.fields["img"] = img P.fields["desc"] = desc -// P.fields["pixel_x"] = pixel_x -// P.fields["pixel_y"] = pixel_y + P.fields["pixel_x"] = pixel_x + P.fields["pixel_y"] = pixel_y P.fields["blueprints"] = blueprints aipictures += P @@ -310,8 +310,8 @@ P.icon = selection.fields["icon"] P.img = selection.fields["img"] P.desc = selection.fields["desc"] -// P.pixel_x = selection.fields["pixel_x"] -// P.pixel_y = selection.fields["pixel_y"] + P.pixel_x = selection.fields["pixel_x"] + P.pixel_y = selection.fields["pixel_y"] P.show(usr) usr << P.desc