mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
fix chat (#11269)
* fix chat * actually ticking the file would be a good start
This commit is contained in:
@@ -96,6 +96,7 @@ GLOBAL_LIST_INIT(admin_verbs_fun, list(
|
||||
/client/proc/one_click_antag, // SKYRAT EDIT ADDITION - ONE CLICK ANTAG
|
||||
/client/proc/spawn_mob_spawner, // SKYRAT EDIT ADDITION
|
||||
/client/proc/request_more_opfor, //SKYRAT EDIT ADDITION
|
||||
/client/proc/fix_say, // SKYRAT EDIT ADDITION
|
||||
/client/proc/cmd_select_equipment,
|
||||
/client/proc/cmd_admin_gib_self,
|
||||
/client/proc/drop_bomb,
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
/client/proc/fix_say()
|
||||
set name = "FIX SAY"
|
||||
set category = "Admin"
|
||||
set desc = "fixes bug where people can't say shid"
|
||||
for(var/player in GLOB.player_list)
|
||||
if(isnull(player))
|
||||
GLOB.player_list -= player
|
||||
+2
-1
@@ -4387,6 +4387,7 @@
|
||||
#include "modular_skyrat\modules\admin\code\admin_help.dm"
|
||||
#include "modular_skyrat\modules\admin\code\adminhelp.dm"
|
||||
#include "modular_skyrat\modules\admin\code\aooc.dm"
|
||||
#include "modular_skyrat\modules\admin\code\fix_chat.dm"
|
||||
#include "modular_skyrat\modules\admin\code\loud_say.dm"
|
||||
#include "modular_skyrat\modules\admin\code\manage_player_ranks.dm"
|
||||
#include "modular_skyrat\modules\admin\code\sooc.dm"
|
||||
@@ -4747,7 +4748,6 @@
|
||||
#include "modular_skyrat\modules\decay_subsystem\code\spawn_nest.dm"
|
||||
#include "modular_skyrat\modules\digi_bloodsole\code\_shoes.dm"
|
||||
#include "modular_skyrat\modules\dogfashion\code\head.dm"
|
||||
#include "modular_skyrat\modules\self_actualization_device\code\self_actualization_device.dm"
|
||||
#include "modular_skyrat\modules\electric_welder\code\electric_welder.dm"
|
||||
#include "modular_skyrat\modules\emotes\code\dna_screams.dm"
|
||||
#include "modular_skyrat\modules\emotes\code\emotes.dm"
|
||||
@@ -5244,6 +5244,7 @@
|
||||
#include "modular_skyrat\modules\sec_haul\code\security_medic\secmed_clothes.dm"
|
||||
#include "modular_skyrat\modules\sec_haul\code\security_medic\security_medic.dm"
|
||||
#include "modular_skyrat\modules\sec_haul\code\security_sergeant\secseg_clothes.dm"
|
||||
#include "modular_skyrat\modules\self_actualization_device\code\self_actualization_device.dm"
|
||||
#include "modular_skyrat\modules\server_overflow\code\chat_link.dm"
|
||||
#include "modular_skyrat\modules\server_overflow\code\client_procs.dm"
|
||||
#include "modular_skyrat\modules\server_overflow\code\server_connect_panel.dm"
|
||||
|
||||
Reference in New Issue
Block a user