Drought.Entity.MovableEntity.suckTehWaterz C# (CSharp) Method

suckTehWaterz() protected method

protected suckTehWaterz ( ) : void
return void
        protected void suckTehWaterz()
        {
            checkForWater();

            if (currWaterPool != null && !isFullOfWater())
            {
                //some water could be wasted but nobody cares about the environment
                addWater(currWaterPool.removeWater(waterSuckAmt));
            }
        }