mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-15 17:13:46 +01:00
Tweak: Removes position randomization for some things (#22820)
* Tweak: Removes position randomization for some things * Randomize when create in machines * Review changes
This commit is contained in:
@@ -50,9 +50,6 @@
|
||||
|
||||
/obj/item/paper/New()
|
||||
..()
|
||||
pixel_y = rand(-8, 8)
|
||||
pixel_x = rand(-9, 9)
|
||||
|
||||
spawn(2)
|
||||
update_icon()
|
||||
updateinfolinks()
|
||||
|
||||
@@ -85,6 +85,8 @@
|
||||
P.loc = user.loc
|
||||
user.put_in_hands(P)
|
||||
P.add_fingerprint(user)
|
||||
P.pixel_x = rand(-9, 9) // Random position
|
||||
P.pixel_y = rand(-8, 8)
|
||||
to_chat(user, "<span class='notice'>You take [P] out of [src].</span>")
|
||||
else
|
||||
to_chat(user, "<span class='notice'>[src] is empty!</span>")
|
||||
|
||||
Reference in New Issue
Block a user