From: Mario Date: Fri, 12 Oct 2018 11:28:51 +0000 (+1000) Subject: Update monster skill colormaps X-Git-Tag: xonotic-v0.8.5~7^2~1^2~32 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4e6e4a8380fce09e9024e571ee3c9de10893639f;p=xonotic%2Fxonotic-data.pk3dir.git Update monster skill colormaps --- 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; }