forked from mirror/openmw-tes3mp
Removed a wrong assertion. Max drowning time is defined by GMST.
This commit is contained in:
parent
2bc2684a66
commit
b0fbea9d57
1 changed files with 1 additions and 1 deletions
|
@ -432,9 +432,9 @@ float MWMechanics::NpcStats::getTimeToStartDrowning() const
|
||||||
{
|
{
|
||||||
return mTimeToStartDrowning;
|
return mTimeToStartDrowning;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MWMechanics::NpcStats::setTimeToStartDrowning(float time)
|
void MWMechanics::NpcStats::setTimeToStartDrowning(float time)
|
||||||
{
|
{
|
||||||
assert(time>=0 && time<=20);
|
|
||||||
mTimeToStartDrowning=time;
|
mTimeToStartDrowning=time;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue