From 38c90841501ead431d6684c03439f6e93c93ad2d Mon Sep 17 00:00:00 2001 From: GunHog Date: Mon, 23 May 2016 17:54:27 -0500 Subject: [PATCH] Fixes Antag status showing for Diagnostic HUD mobs ANTAG_HUD and DIAG_BOT_HUD were set to the same define. --- code/__DEFINES/hud.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/hud.dm b/code/__DEFINES/hud.dm index 27252048b47..6332e59520c 100644 --- a/code/__DEFINES/hud.dm +++ b/code/__DEFINES/hud.dm @@ -15,7 +15,7 @@ #define DIAG_MECH_HUD "11"// Mech health bar #define DIAG_BOT_HUD "12"// Bot HUDs //for antag huds. these are used at the /mob level -#define ANTAG_HUD "12" +#define ANTAG_HUD "13" //data HUD (medhud, sechud) defines //Don't forget to update human/New() if you change these!