mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
committed by
GitHub
parent
b06bc1e7ea
commit
dea9f62bc3
14
fulp_modules/Z_edits/erp_removal/vox.dm
Normal file
14
fulp_modules/Z_edits/erp_removal/vox.dm
Normal 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)
|
||||
@@ -5,6 +5,9 @@
|
||||
// Load Mentors
|
||||
load_mentors()
|
||||
|
||||
// Call overrides
|
||||
call_fulp_overrides()
|
||||
|
||||
GLOB.special_roles += list(
|
||||
ROLE_BLOODSUCKER = 0,
|
||||
ROLE_VAMPIRICACCIDENT = 0,
|
||||
|
||||
4
fulp_modules/fulp_world/override_procs.dm
Normal file
4
fulp_modules/fulp_world/override_procs.dm
Normal 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()
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user