mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 15:47:15 +01:00
Uncommented pixel_x and pixel_y
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user