mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
Revert "Removes the 18+ vetted examine" (#4105)
## About the Pull Request Reverts Bubberstation/Bubberstation#4104, which removed the vetted examine text as we no longer permit players who aren't vetted to join the game. Bubberstation is safer than it ever has been before. It may be that we don't need the code to differentiate anymore, but-- and this is almost certainly one of the only times I will use this is an argument-- **SOVL** ## Why It's Good For The Game The vetted tag has served us faithfully for the past two years. It is Bubber's strongest warrior. Is it necessary code, anymore? Probably not. But continuing to have it present on players will remind people that the staff here ensure the environment is safe for everyone. It's not just information, it's a physical affirmation of that commitment to our players. It should stay, for at least a year or two. ## Changelog 🆑 add: Restored the holy vetted examine text, even if it's redundant now. It can wait a bit before going to the retirement home. /🆑 Co-authored-by: The Sharkening <95130227+StrangeWeirdKitten@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
/mob/living/silicon/get_silicon_flavortext()
|
||||
. = ..()
|
||||
if(!CONFIG_GET(flag/check_vetted))
|
||||
return
|
||||
if(!client || !SSplayer_ranks.initialized)
|
||||
return
|
||||
if(SSplayer_ranks.is_vetted(client, admin_bypass = FALSE))
|
||||
. += span_greenannounce("This player has been vetted as 18+ by staff.")
|
||||
else
|
||||
. += span_velvet("THIS PLAYER IS NOT VETTED! CONTINUE AT YOUR OWN RISK!")
|
||||
|
||||
/mob/living/carbon/human/examine(mob/user)
|
||||
. = ..()
|
||||
if(!CONFIG_GET(flag/check_vetted))
|
||||
return
|
||||
if(!client || !SSplayer_ranks.initialized)
|
||||
return
|
||||
if(SSplayer_ranks.is_vetted(client, admin_bypass = FALSE))
|
||||
. += span_greenannounce("This player has been vetted as 18+ by staff.")
|
||||
else
|
||||
. += span_velvet("THIS PLAYER IS NOT VETTED! CONTINUE AT YOUR OWN RISK!")
|
||||
@@ -9706,6 +9706,7 @@
|
||||
#include "modular_zubbers\code\modules\vending\multisec.dm"
|
||||
#include "modular_zubbers\code\modules\vending\vending.dm"
|
||||
#include "modular_zubbers\code\modules\vending\wardrobe.dm"
|
||||
#include "modular_zubbers\code\modules\vetted\examine.dm"
|
||||
#include "modular_zubbers\code\modules\vetted\vetted.dm"
|
||||
#include "modular_zubbers\code\modules\vetted\overrides\erp_preferences.dm"
|
||||
#include "modular_zubbers\code\modules\voting\_votes.dm"
|
||||
|
||||
Reference in New Issue
Block a user