Prevent holodeck griefing

Replaces plasma flood, holo-carp, and killer bees. The modules will now create harmless air, corgis, and foxes.
This commit is contained in:
Darius
2022-12-24 18:17:14 -05:00
parent d84afa8bbf
commit 20df2e6eeb
4 changed files with 24 additions and 0 deletions
@@ -1,2 +1,6 @@
// Gas defines here because somebody hates typepaths
#define GAS_COPIUM "copium"
// Prevent holodeck plasma
#undef BURNMIX_ATMOS
#define BURNMIX_ATMOS OPENTURF_DEFAULT_ATMOS
@@ -0,0 +1,11 @@
// Replacement for holodeck plasma module
/area/holodeck/rec_center/burn
name = "Holodeck - Atmospheric Test"
// Replacement for holodeck carp module
/area/holodeck/rec_center/wildlife
name = "Holodeck - Good Boy Simulation"
// Replacement for holodeck bee module
/area/holodeck/rec_center/anthophila
name = "Holodeck - Gekkerphila"
@@ -0,0 +1,7 @@
// Replace carp with corgis
/obj/effect/holodeck_effect/mobspawner
mobtype = /mob/living/simple_animal/pet/dog/corgi
// Replace bees with foxes
/obj/effect/holodeck_effect/mobspawner/bee
mobtype = /mob/living/simple_animal/pet/fox
+2
View File
@@ -4338,6 +4338,7 @@
#include "modular_splurt\code\game\say.dm"
#include "modular_splurt\code\game\area\areas\centcom.dm"
#include "modular_splurt\code\game\area\areas\commons.dm"
#include "modular_splurt\code\game\area\areas\holodeck.dm"
#include "modular_splurt\code\game\area\areas\layenia.dm"
#include "modular_splurt\code\game\area\areas\maintenance.dm"
#include "modular_splurt\code\game\area\areas\shuttles.dm"
@@ -4595,6 +4596,7 @@
#include "modular_splurt\code\modules\food_and_drinks\recipes\tablecraft\recipes_burger.dm"
#include "modular_splurt\code\modules\food_and_drinks\recipes\tablecraft\recipes_donut.dm"
#include "modular_splurt\code\modules\holiday\holidays.dm"
#include "modular_splurt\code\modules\holodeck\holo_effect.dm"
#include "modular_splurt\code\modules\hydroponics\grown\towercap.dm"
#include "modular_splurt\code\modules\jobs\job_types\_job_alt_titles.dm"
#include "modular_splurt\code\modules\jobs\job_types\atmospheric_technician.dm"