diff --git a/code/game/machinery/doors/multi_tile.dm b/code/game/machinery/doors/multi_tile.dm index 464b854c402..67181cb824a 100644 --- a/code/game/machinery/doors/multi_tile.dm +++ b/code/game/machinery/doors/multi_tile.dm @@ -7,7 +7,7 @@ open_sound_powered = 'sound/machines/door/WideOpen.ogg' close_sound_powered = 'sound/machines/door/WideClose.ogg' -/obj/machinery/door/airlock/multi_tile/Initialize(mapload) +/obj/machinery/door/airlock/multi_tile/Initialize() . = ..() SetBounds() RegisterSignal(src, COMSIG_MOVABLE_MOVED, .proc/SetBounds) diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index 33cf8b66326..881a46a445b 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -65,6 +65,12 @@ if("bluespacerift") endgame_exits += loc delete_me = 1 + //VOREStation Add Start + if("vinestart") + vinestart += loc + delete_me = 1 + return + //VORE Station Add End if(delete_me) return INITIALIZE_HINT_QDEL diff --git a/code/game/objects/structures/simple_doors.dm b/code/game/objects/structures/simple_doors.dm index a66117b87c0..8a097638c41 100644 --- a/code/game/objects/structures/simple_doors.dm +++ b/code/game/objects/structures/simple_doors.dm @@ -22,7 +22,7 @@ hardness -= material.combustion_effect(get_turf(src),temperature, 0.3) CheckHardness() -/obj/structure/simple_door/Initialize(mapload, var/material_name) +/obj/structure/simple_door/Initialize(var/material_name) . = ..() if(material_name && !material) material = material_name @@ -221,13 +221,13 @@ return SSradiation.radiate(src, round(material.radioactivity/3)) -/obj/structure/simple_door/wood/Initialize(mapload) +/obj/structure/simple_door/wood/Initialize() knock_sound = 'sound/machines/door/knock_wood.wav' -/obj/structure/simple_door/hardwood/Initialize(mapload) +/obj/structure/simple_door/hardwood/Initialize() knock_sound = 'sound/machines/door/knock_wood.wav' -/obj/structure/simple_door/sifwood/Initialize(mapload) +/obj/structure/simple_door/sifwood/Initialize() knock_sound = 'sound/machines/door/knock_wood.wav' /obj/structure/simple_door/iron diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm index a6fb248651d..44c920f1165 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm @@ -61,7 +61,12 @@ verbs += /mob/living/proc/hide true_name = "[pick("Primary","Secondary","Tertiary","Quaternary")] [rand(1000,9999)]" - + + //VOREStation Add Start + if(!roundstart && antag) + request_player() + //VOREStation Add End + if(!roundstart) addtimer(CALLBACK(src, .proc/request_player), 0)