forked from mirror/openmw-tes3mp
setDynamic workaround for broken endgame scripts (Fixes #2016)
This commit is contained in:
parent
7d35199396
commit
69bbbefc09
1 changed files with 4 additions and 0 deletions
|
@ -222,6 +222,10 @@ namespace MWScript
|
|||
Interpreter::Type_Float diff = runtime[0].mFloat;
|
||||
runtime.pop();
|
||||
|
||||
// workaround broken endgame scripts that kill dagoth ur
|
||||
if (Misc::StringUtils::ciEqual(ptr.getCellRef().getRefId(), "dagoth_ur_1"))
|
||||
return;
|
||||
|
||||
MWMechanics::CreatureStats& stats = ptr.getClass().getCreatureStats (ptr);
|
||||
|
||||
Interpreter::Type_Float current = stats.getDynamic(mIndex).getCurrent();
|
||||
|
|
Loading…
Reference in a new issue