Overrides a Few VOX Terms (#1379)

* Overrides a few VOX terms.
This commit is contained in:
QuiteLiterallyAnything
2025-03-24 16:55:18 -07:00
committed by GitHub
parent b06bc1e7ea
commit dea9f62bc3
4 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/// List of terms that we filter out of the main VOX list.
GLOBAL_LIST_INIT(vox_filter_list, list(
"coomer",
"johnson", // Remove this if "cave" is ever added to VOX.
"lusty",
))
/// Override/edit the main VOX terms list.
/world/proc/override_vox()
if(!GLOB.vox_filter_list || !GLOB.vox_sounds)
return
for(var/filtered_term in GLOB.vox_filter_list)
GLOB.vox_sounds.Remove(filtered_term)

View File

@@ -5,6 +5,9 @@
// Load Mentors
load_mentors()
// Call overrides
call_fulp_overrides()
GLOB.special_roles += list(
ROLE_BLOODSUCKER = 0,
ROLE_VAMPIRICACCIDENT = 0,

View File

@@ -0,0 +1,4 @@
/// Here we call individual override procs. This proc itself is linked to a call on '/world/New()'
/// in 'fulp_modules\fulp_world\fulp_world.dm'
/world/proc/call_fulp_overrides()
override_vox()

View File

@@ -6789,6 +6789,7 @@
#include "fulp_modules\fulp_world\fulp_config.dm"
#include "fulp_modules\fulp_world\fulp_preferences.dm"
#include "fulp_modules\fulp_world\fulp_world.dm"
#include "fulp_modules\fulp_world\override_procs.dm"
#include "fulp_modules\fulp_world\public_restart_vote.dm"
#include "fulp_modules\mapping\_basemap.dm"
#include "fulp_modules\mapping\areas\areas.dm"
@@ -6831,6 +6832,7 @@
#include "fulp_modules\Z_edits\emote_edits\scream.dm"
#include "fulp_modules\Z_edits\erp_removal\clothing.dm"
#include "fulp_modules\Z_edits\erp_removal\double_beds.dm"
#include "fulp_modules\Z_edits\erp_removal\vox.dm"
#include "fulp_modules\Z_edits\event_overrides\grav_gen_blackout.dm"
#include "fulp_modules\Z_edits\fixes\radio.dm"
#include "fulp_modules\Z_edits\inititalize_edits\closet_init.dm"