mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +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:
@@ -5,9 +5,3 @@
|
||||
icon = 'icons/obj/hydroponics/equipment.dmi'
|
||||
icon_state = "honey_frame"
|
||||
var/honeycomb_capacity = 10 //10 Honeycomb per frame by default, researchable frames perhaps?
|
||||
|
||||
|
||||
/obj/item/honey_frame/New()
|
||||
. = ..()
|
||||
pixel_x = rand(8,-8)
|
||||
pixel_y = rand(8,-8)
|
||||
|
||||
@@ -385,8 +385,6 @@
|
||||
/obj/item/disk/plantgene/New()
|
||||
..()
|
||||
update_icon(UPDATE_OVERLAYS)
|
||||
pixel_x = rand(-5, 5)
|
||||
pixel_y = rand(-5, 5)
|
||||
|
||||
/obj/item/disk/plantgene/Destroy()
|
||||
QDEL_NULL(gene)
|
||||
|
||||
@@ -242,8 +242,6 @@
|
||||
/obj/item/reagent_containers/glass/bottle/nutrient/Initialize(mapload)
|
||||
. = ..()
|
||||
add_lid()
|
||||
pixel_x = rand(-5, 5)
|
||||
pixel_y = rand(-5, 5)
|
||||
|
||||
/obj/item/reagent_containers/glass/bottle/nutrient/on_reagent_change()
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user