no errors

This commit is contained in:
Chubbygummibear
2023-12-19 16:05:33 -08:00
parent a2a11d1ecf
commit 884623e600
4 changed files with 2 additions and 15 deletions

View File

@@ -33,7 +33,7 @@
type = MESSAGE_TYPE_DEBUG, \
text = "DEBUG: [msg]")
/// Used for debug messages to the admins
#define debug_admins(msg) if (GLOB.Debug2) to_chat(GLOB.admins, \
#define debug_admins(msg) if (GLOB.Debug2) to_chat(GLOB.permissions.admins, \
type = MESSAGE_TYPE_DEBUG, \
text = "DEBUG: [msg]")
/// Used for debug messages to the server

View File

@@ -253,18 +253,6 @@ GLOBAL_LIST_INIT(donor_pdas, list(PDA_COLOR_NORMAL, PDA_COLOR_TRANSPARENT, PDA_C
#define SHELTER_DEPLOY_ANCHORED_OBJECTS "anchored objects"
#define SHELTER_DEPLOY_OUTSIDE_MAP "outside map"
//debug printing macros
#define debug_world(msg) if (GLOB.Debug2) to_chat(world, \
type = MESSAGE_TYPE_DEBUG, \
text = "DEBUG: [msg]")
#define debug_usr(msg) if (GLOB.Debug2&&usr) to_chat(usr, \
type = MESSAGE_TYPE_DEBUG, \
text = "DEBUG: [msg]")
#define debug_admins(msg) if (GLOB.Debug2) to_chat(GLOB.permissions.admins, \
type = MESSAGE_TYPE_DEBUG, \
text = "DEBUG: [msg]")
#define debug_world_log(msg) if (GLOB.Debug2) log_world("DEBUG: [msg]")
#define INCREMENT_TALLY(L, stat) if(L[stat]){L[stat]++}else{L[stat] = 1}
//TODO Move to a pref

View File

@@ -1,7 +1,6 @@
SUBSYSTEM_DEF(icon_smooth)
name = "Icon Smoothing"
init_order = INIT_ORDER_ICON_SMOOTHING
//runlevels = RUNLEVEL_GAME
wait = 1
priority = FIRE_PRIORITY_SMOOTHING
flags = SS_TICKER

View File

@@ -2159,8 +2159,8 @@
#include "code\modules\client\preferences\assets.dm"
#include "code\modules\client\preferences\auto_fit_viewport.dm"
#include "code\modules\client\preferences\balloon_alerts.dm"
#include "code\modules\client\preferences\clerk_choice.dm"
#include "code\modules\client\preferences\chapel_choice.dm"
#include "code\modules\client\preferences\clerk_choice.dm"
#include "code\modules\client\preferences\clothing.dm"
#include "code\modules\client\preferences\credits.dm"
#include "code\modules\client\preferences\donor.dm"