Uncommented pixel_x and pixel_y

This commit is contained in:
AndroidSFV
2013-09-14 15:49:38 -05:00
parent de70b5dd98
commit 8a0802611e
2 changed files with 12 additions and 8 deletions
+4
View File
@@ -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()
+8 -8
View File
@@ -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