mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 01:22:18 +00:00
Updated Zandronum compiler
MapSet: should probably clamp parsed selection group, because you never know...
This commit is contained in:
parent
8b429ca43b
commit
dbe3fc9e1a
9 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
\*******************************************************************/
|
||||
|
||||
// Compiler settings
|
||||
compiler = "skulltag_acc";
|
||||
compiler = "zandronum_acc";
|
||||
parameters = "-I \"%PT\" -I \"%PS\" %FI %FO";
|
||||
resultlump = "BEHAVIOR";
|
||||
|
||||
|
|
|
@ -1433,7 +1433,7 @@ namespace CodeImp.DoomBuilder.Map
|
|||
int groupnum;
|
||||
if(!int.TryParse(mp.Key as string, out groupnum)) continue;
|
||||
|
||||
int groupmask = 0x01 << groupnum;
|
||||
int groupmask = 0x01 << General.Clamp(groupnum, 0, 10);
|
||||
groupinfo = (IDictionary)mp.Value;
|
||||
|
||||
if(groupinfo.Contains("vertices"))
|
||||
|
|
Loading…
Reference in a new issue