mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-31 23:45:32 +00:00
Don't allow resting on water with water walking
This commit is contained in:
parent
f0d5cf7afb
commit
fee39afe38
1 changed files with 1 additions and 1 deletions
|
@ -2183,7 +2183,7 @@ namespace MWWorld
|
|||
if (!actor)
|
||||
throw std::runtime_error("can't find player");
|
||||
|
||||
if ((actor->getCollisionMode() && !mPhysics->isOnSolidGround(player)) || isUnderwater(currentCell, playerPos))
|
||||
if ((actor->getCollisionMode() && !mPhysics->isOnSolidGround(player)) || isUnderwater(currentCell, playerPos) || isWalkingOnWater(player))
|
||||
return 2;
|
||||
|
||||
if((currentCell->getCell()->mData.mFlags&ESM::Cell::NoSleep) || player.getClass().getNpcStats(player).isWerewolf())
|
||||
|
|
Loading…
Reference in a new issue