diff --git a/code/game/gamemodes/cult/cult_structures.dm b/code/game/gamemodes/cult/cult_structures.dm index 0f2c4d83b6..b310bc9ca1 100644 --- a/code/game/gamemodes/cult/cult_structures.dm +++ b/code/game/gamemodes/cult/cult_structures.dm @@ -109,7 +109,7 @@ light_color="#ff0000" spawnable=list( /mob/living/simple_animal/hostile/scarybat, - /mob/living/simple_animal/hostile/creature, + /mob/living/simple_animal/hostile/vore/creature, // Vorestation Edit /mob/living/simple_animal/hostile/faithless ) @@ -118,7 +118,7 @@ light_color="#ff0000" spawnable=list( /mob/living/simple_animal/hostile/scarybat/cult, - /mob/living/simple_animal/hostile/creature/cult, + /mob/living/simple_animal/hostile/vore/creature/cult, // Vorestation Edit /mob/living/simple_animal/hostile/faithless/cult ) diff --git a/code/game/gamemodes/events.dm b/code/game/gamemodes/events.dm index 4bf9e808dd..bdc4052589 100644 --- a/code/game/gamemodes/events.dm +++ b/code/game/gamemodes/events.dm @@ -210,7 +210,7 @@ var/hadevent = 0 /proc/carp_migration() // -- Darem for(var/obj/effect/landmark/C in landmarks_list) if(C.name == "carpspawn") - new /mob/living/simple_animal/hostile/carp(C.loc) + new /mob/living/simple_animal/hostile/vore/carp(C.loc) // Vorestation edit //sleep(100) spawn(rand(300, 600)) //Delayed announcements to keep the crew on their toes. command_announcement.Announce("Unknown biological entities have been detected near [station_name()], please stand-by.", "Lifesign Alert", new_sound = 'sound/AI/commandreport.ogg') diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm index 13ff75e071..4dad236b73 100644 --- a/code/game/machinery/teleporter.dm +++ b/code/game/machinery/teleporter.dm @@ -64,7 +64,7 @@ for(var/obj/machinery/teleport/hub/H in range(1)) var/amount = rand(2,5) for(var/i=0;i= 3) if(prob(5)) charges -= 1 - var/spawn_type = pick(/mob/living/simple_animal/hostile/creature) + var/spawn_type = pick(/mob/living/simple_animal/hostile/vore/creature) // Vorestation Edit new spawn_type(pick(view(1,src))) playsound(src.loc, pick('sound/hallucinations/growl1.ogg','sound/hallucinations/growl2.ogg','sound/hallucinations/growl3.ogg'), 50, 1, -3) diff --git a/code/modules/spells/aoe_turf/summons.dm b/code/modules/spells/aoe_turf/summons.dm index 996b583585..2d62b7c561 100644 --- a/code/modules/spells/aoe_turf/summons.dm +++ b/code/modules/spells/aoe_turf/summons.dm @@ -20,7 +20,7 @@ invocation_type = SpI_SHOUT range = 1 - summon_type = list(/mob/living/simple_animal/hostile/carp) + summon_type = list(/mob/living/simple_animal/hostile/vore/carp) // Vorestation Edit hud_state = "wiz_carp" @@ -36,6 +36,6 @@ summon_amt = 10 range = 3 - summon_type = list(/mob/living/simple_animal/hostile/creature) + summon_type = list(/mob/living/simple_animal/hostile/vore/creature) // Vorestation Edit hud_state = "wiz_creature" \ No newline at end of file