1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-22 13:10:28 -05:00

Grief: remove map rotation string va function call

This commit is contained in:
Jbleezy
2021-12-16 01:45:35 -08:00
parent 74df9999bb
commit 1eb3ab0685

View File

@ -1952,7 +1952,7 @@ random_map_rotation()
}
num = randomInt(rotation_data.location.size);
rotation_string = va( "exec zm_%s_%s.cfg map %s", "grief", rotation_data.location[num], rotation_data.mapname[num] );
rotation_string = "exec zm_grief_" + rotation_data.location[num] + ".cfg map " + rotation_data.mapname[num];
setDvar( "sv_maprotation", rotation_string );
setDvar( "sv_maprotationCurrent", rotation_string );
}