Update files
This commit is contained in:
@@ -105,7 +105,7 @@
|
||||
/obj/effect/holodeck_effect/mobspawner/penguin
|
||||
mobtype = /mob/living/simple_animal/pet/penguin/emperor
|
||||
|
||||
/obj/effect/holodeck_effect/mobspawner/penguin/Initialize()
|
||||
/obj/effect/holodeck_effect/mobspawner/penguin/Initialize(mapload)
|
||||
if(prob(1))
|
||||
mobtype = /mob/living/simple_animal/pet/penguin/emperor/shamebrero
|
||||
return ..()
|
||||
|
||||
@@ -26,12 +26,12 @@
|
||||
var/active = 0
|
||||
var/saber_color
|
||||
|
||||
/obj/item/holo/esword/green/Initialize()
|
||||
/obj/item/holo/esword/green/Initialize(mapload)
|
||||
. = ..()
|
||||
saber_color = "green"
|
||||
|
||||
|
||||
/obj/item/holo/esword/red/Initialize()
|
||||
/obj/item/holo/esword/red/Initialize(mapload)
|
||||
. = ..()
|
||||
saber_color = "red"
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
return ..()
|
||||
return ..()
|
||||
|
||||
/obj/item/holo/esword/Initialize()
|
||||
/obj/item/holo/esword/Initialize(mapload)
|
||||
. = ..()
|
||||
saber_color = pick("red","blue","green","purple")
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
icon_state = "asteroid0"
|
||||
tiled_dirt = FALSE
|
||||
|
||||
/turf/open/floor/holofloor/asteroid/Initialize()
|
||||
/turf/open/floor/holofloor/asteroid/Initialize(mapload)
|
||||
icon_state = "asteroid[rand(0, 12)]"
|
||||
. = ..()
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
icon_state = "basalt0"
|
||||
tiled_dirt = FALSE
|
||||
|
||||
/turf/open/floor/holofloor/basalt/Initialize()
|
||||
/turf/open/floor/holofloor/basalt/Initialize(mapload)
|
||||
. = ..()
|
||||
if(prob(15))
|
||||
icon_state = "basalt[rand(0, 12)]"
|
||||
@@ -79,7 +79,7 @@
|
||||
icon = 'icons/turf/space.dmi'
|
||||
icon_state = "0"
|
||||
|
||||
/turf/open/floor/holofloor/space/Initialize()
|
||||
/turf/open/floor/holofloor/space/Initialize(mapload)
|
||||
icon_state = SPACE_ICON_STATE // so realistic
|
||||
. = ..()
|
||||
|
||||
@@ -90,11 +90,11 @@
|
||||
bullet_bounce_sound = null
|
||||
tiled_dirt = FALSE
|
||||
|
||||
/turf/open/floor/holofloor/hyperspace/Initialize()
|
||||
/turf/open/floor/holofloor/hyperspace/Initialize(mapload)
|
||||
icon_state = "speedspace_ns_[(x + 5*y + (y%2+1)*7)%15+1]"
|
||||
. = ..()
|
||||
|
||||
/turf/open/floor/holofloor/hyperspace/ns/Initialize()
|
||||
/turf/open/floor/holofloor/hyperspace/ns/Initialize(mapload)
|
||||
. = ..()
|
||||
icon_state = "speedspace_ns_[(x + 5*y + (y%2+1)*7)%15+1]"
|
||||
|
||||
@@ -109,7 +109,7 @@
|
||||
bullet_bounce_sound = null
|
||||
tiled_dirt = FALSE
|
||||
|
||||
/turf/open/floor/holofloor/carpet/Initialize()
|
||||
/turf/open/floor/holofloor/carpet/Initialize(mapload)
|
||||
. = ..()
|
||||
addtimer(CALLBACK(src, /atom/.proc/update_icon), 1)
|
||||
|
||||
@@ -167,6 +167,6 @@
|
||||
canSmoothWith = list(/turf/open/floor/plating/ice/smooth, /turf/open/floor/plating/ice, /turf/open/floor/holofloor/ice)
|
||||
baseturfs = /turf/open/floor/holofloor/ice/smooth
|
||||
|
||||
/turf/open/floor/holofloor/ice/Initialize()
|
||||
/turf/open/floor/holofloor/ice/Initialize(mapload)
|
||||
. = ..()
|
||||
MakeSlippery(TURF_WET_PERMAFROST, INFINITY, 0, INFINITY, TRUE)
|
||||
|
||||
Reference in New Issue
Block a user