]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Update monster skill colormaps
authorMario <mario@smbclan.net>
Fri, 12 Oct 2018 11:28:51 +0000 (21:28 +1000)
committerMario <mario@smbclan.net>
Fri, 12 Oct 2018 11:28:51 +0000 (21:28 +1000)
qcsrc/common/monsters/sv_monsters.qc

index 2b4d1b0bc0be7e5d83de98188208d97b44c029e3..57e1c3015d644208208c8204444e80ef6029fdb3 100644 (file)
@@ -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;
        }