This commit is contained in:
GabsPuNs
2026-05-14 21:52:21 -04:00
parent 1b2f5c6fe8
commit f8a2d644f5
291 changed files with 7363 additions and 18368 deletions

View File

@@ -2,7 +2,6 @@
#include "net.minecraft.world.level.h"
#include "LiquidTileDynamic.h"
#include "net.minecraft.world.level.dimension.h"
#include "DoorTile.h"
LiquidTileDynamic::LiquidTileDynamic(int id, Material *material) : LiquidTile(id, material)
{
@@ -296,7 +295,7 @@ bool *LiquidTileDynamic::getSpread(Level *level, int x, int y, int z)
bool LiquidTileDynamic::isWaterBlocking(Level *level, int x, int y, int z)
{
int t = level->getTile(x, y, z);
if (DoorTile::isDoor(t) || t == Tile::door_iron_Id || t == Tile::sign_Id || t == Tile::ladder_Id || t == Tile::reeds_Id)
if (t == Tile::door_wood_Id || t == Tile::door_iron_Id || t == Tile::sign_Id || t == Tile::ladder_Id || t == Tile::reeds_Id)
{
return true;
}