]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/loader.qc
Merge branch 'terencehill/cl_forceplayercolors_3' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / loader.qc
1 #include "loader.qh"
2
3 #include <common/weapons/_all.qh>
4 #include <common/stats.qh>
5 #include <server/miscfunctions.qh>
6
7 STATIC_INIT_LATE(Gametype) {
8     Gametype g = MapInfo_CurrentGametype();
9     if (g) {
10         for (string _s = g.m_mutators; _s != ""; _s = cdr(_s)) {
11             string s = car(_s);
12             FOREACH(Mutators, it.m_name == s, { Mutator_Add(it); break; });
13         }
14     }
15 }