- Fixed. The Firedemon was missing a game filter.
SBARINfO update: - Added: disablegrin, disableouch, disablepain, and disablerampage flags to drawmugshot. - Fixed: LowerHealthCap did not work properly. - Fixed: Various bugs I noticed in the fullscreenoffsets code. SVN r1122 (trunk)
This commit is contained in:
parent
535f209560
commit
344f1072a6
9 changed files with 127 additions and 77 deletions
|
|
@ -657,11 +657,20 @@ void SBarInfo::ParseSBarInfoBlock(FScanner &sc, SBarInfoBlock &block)
|
|||
cmd.flags |= DRAWMUGSHOT_XDEATHFACE;
|
||||
else if(sc.Compare("animatedgodmode"))
|
||||
cmd.flags |= DRAWMUGSHOT_ANIMATEDGODMODE;
|
||||
else if(sc.Compare("disablegrin"))
|
||||
cmd.flags |= DRAWMUGSHOT_DISABLEGRIN;
|
||||
else if(sc.Compare("disableouch"))
|
||||
cmd.flags |= DRAWMUGSHOT_DISABLEOUCH;
|
||||
else if(sc.Compare("disablepain"))
|
||||
cmd.flags |= DRAWMUGSHOT_DISABLEPAIN;
|
||||
else if(sc.Compare("disablerampage"))
|
||||
cmd.flags |= DRAWMUGSHOT_DISABLERAMPAGE;
|
||||
else
|
||||
sc.ScriptError("Unknown flag '%s'.", sc.String);
|
||||
if(!sc.CheckToken('|'))
|
||||
sc.MustGetToken(',');
|
||||
}
|
||||
|
||||
this->getCoordinates(sc, cmd, block.fullScreenOffsets);
|
||||
sc.MustGetToken(';');
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue