From 4e6e4a8380fce09e9024e571ee3c9de10893639f Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 12 Oct 2018 21:28:51 +1000 Subject: [PATCH] Update monster skill colormaps --- qcsrc/common/monsters/sv_monsters.qc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qcsrc/common/monsters/sv_monsters.qc b/qcsrc/common/monsters/sv_monsters.qc index 2b4d1b0bc0..57e1c3015d 100644 --- a/qcsrc/common/monsters/sv_monsters.qc +++ b/qcsrc/common/monsters/sv_monsters.qc @@ -172,15 +172,15 @@ void monster_setupcolors(entity this) else { if(this.monster_skill <= MONSTER_SKILL_EASY) - this.colormap = 1029; + this.colormap = 1126; else if(this.monster_skill <= MONSTER_SKILL_MEDIUM) - this.colormap = 1027; + this.colormap = 1075; else if(this.monster_skill <= MONSTER_SKILL_HARD) - this.colormap = 1038; + this.colormap = 1228; else if(this.monster_skill <= MONSTER_SKILL_INSANE) - this.colormap = 1028; + this.colormap = 1092; else if(this.monster_skill <= MONSTER_SKILL_NIGHTMARE) - this.colormap = 1032; + this.colormap = 1160; else this.colormap = 1024; } -- 2.39.2