- Fixed: The UDMF parser wrote class filter bits into SkillFilter.
- Fixed: (SBARINFO patch) DrawInventoryBar has a missing argument in one of its drawgraphic calls. - Added Gez's patch for Heretic's GIMME cheat. - Externalized some cheat strings. SVN r1178 (trunk)
This commit is contained in:
parent
30685c3a74
commit
f64862fe75
7 changed files with 131 additions and 17 deletions
|
|
@ -323,7 +323,7 @@ struct UDMFParser
|
|||
case NAME_Class16:
|
||||
CHECK_N(Hx | Zd | Zdt)
|
||||
if (CheckBool(key)) th->ClassFilter |= (1<<(int(key)-NAME_Class1));
|
||||
else th->SkillFilter &= ~(1<<(int(key)-NAME_Class1));
|
||||
else th->ClassFilter &= ~(1<<(int(key)-NAME_Class1));
|
||||
break;
|
||||
|
||||
case NAME_Ambush:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue