1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 03:19:44 +00:00

Cleanup(loadcell): Rename setHasWater to setHasWaterHeightSub

This commit is contained in:
Dave Corley 2024-02-22 03:23:23 -06:00
parent 7f67d2e805
commit ce2787e15e
2 changed files with 2 additions and 2 deletions

View File

@ -998,7 +998,7 @@ namespace CSMWorld
if (isInterior && interiorWater)
{
cell.mWater = value.toFloat();
cell.setHasWater(true);
cell.setHasWaterHeightSub(true);
}
else
return; // return without saving

View File

@ -163,7 +163,7 @@ namespace ESM
bool hasWater() const { return ((mData.mFlags & HasWater) != 0) || isExterior(); }
void setHasWater(bool hasWater) { mHasWaterHeightSub = hasWater; }
void setHasWaterHeightSub(bool hasWater) { mHasWaterHeightSub = hasWater; }
bool hasAmbient() const { return mHasAmbi; }