]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/loader.qc
Merge branch 'TimePath/modules'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / loader.qc
1 #include "loader.qh"
2
3 STATIC_INIT_LATE(Gametype) {
4     Gametype g = MapInfo_CurrentGametype();
5     if (g) {
6         for (string _s = g.m_mutators; _s != ""; _s = cdr(_s)) {
7             string s = car(_s);
8             FOREACH(Mutators, it.m_name == s, LAMBDA(Mutator_Add(it); break));
9         }
10     }
11 }