mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 19:44:46 +01:00
Going to slep
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
var/datum/planet/virgo3c/planet_virgo3c = null
|
||||
|
||||
/datum/time/virgo3c
|
||||
seconds_in_day = 6 HOURS
|
||||
seconds_in_day = 12 HOURS
|
||||
|
||||
/datum/planet/virgo3c
|
||||
name = "Virgo-3c"
|
||||
@@ -53,15 +53,15 @@ var/datum/planet/virgo3c/planet_virgo3c = null
|
||||
var/min = 0
|
||||
|
||||
switch(sun_position)
|
||||
if(0 to 0.20) // Night
|
||||
low_brightness = 0.3
|
||||
if(0 to 0.45) // Night
|
||||
low_brightness = 0.1
|
||||
low_color = "#000066"
|
||||
|
||||
high_brightness = 0.5
|
||||
high_brightness = 0.2
|
||||
high_color = "#66004D"
|
||||
min = 0
|
||||
|
||||
if(0.20 to 0.30) // Twilight
|
||||
if(0.45 to 0.50) // Twilight
|
||||
low_brightness = 0.5
|
||||
low_color = "#66004D"
|
||||
|
||||
@@ -69,7 +69,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
|
||||
high_color = "#CC3300"
|
||||
min = 0.40
|
||||
|
||||
if(0.30 to 0.40) // Sunrise/set
|
||||
if(0.50 to 0.55) // Sunrise/set
|
||||
low_brightness = 0.9
|
||||
low_color = "#CC3300"
|
||||
|
||||
@@ -77,7 +77,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
|
||||
high_color = "#FF9933"
|
||||
min = 0.50
|
||||
|
||||
if(0.40 to 1.00) // Noon
|
||||
if(0.55 to 1.00) // Noon
|
||||
low_brightness = 3.0
|
||||
low_color = "#DDDDDD"
|
||||
|
||||
|
||||
@@ -5,7 +5,8 @@
|
||||
anchored = TRUE
|
||||
|
||||
var/working = FALSE
|
||||
|
||||
var/negative_dir = null //VOREStation Addition
|
||||
|
||||
/obj/machinery/recycling/process()
|
||||
return PROCESS_KILL // these are all stateful
|
||||
|
||||
@@ -85,7 +86,12 @@
|
||||
/obj/machinery/recycling/crusher/can_accept_item(obj/item/O)
|
||||
if(LAZYLEN(O.matter))
|
||||
return ..()
|
||||
return FALSE
|
||||
//VOREStation Addition Start - Let's the machine decide to put things it can't accept somewhere else.
|
||||
else if(negative_dir && isitem(O) && !ishuman(O.loc))
|
||||
O.forceMove(get_step(src, negative_dir))
|
||||
else
|
||||
return FALSE
|
||||
//VOREStation Addition End
|
||||
|
||||
/obj/machinery/recycling/crusher/take_item(obj/item/O)
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user