57234 {
57236 if (Main.tile[X, Y - 1] == null)
57237 {
57238 Main.tile[X, Y - 1] =
default(
Tile);
57239 }
57240 if (Main.tile[X, Y] == null)
57241 {
57242 Main.tile[X, Y] =
default(
Tile);
57243 }
57244 if (Main.tile[X, Y + 1] == null)
57245 {
57246 Main.tile[X, Y + 1] =
default(
Tile);
57247 }
57248 if (Main.tile[X, Y - 1].liquid > 0)
57249 {
57251 result -= (float)(Main.tile[X, Y - 1].liquid / 16);
57252 }
57253 else if (Main.tile[X, Y].liquid > 0)
57254 {
57256 result -= (float)(Main.tile[X, Y].liquid / 16);
57257 }
57258 else if (Main.tile[X, Y + 1].liquid > 0)
57259 {
57261 result -= (float)(Main.tile[X, Y + 1].liquid / 16);
57262 }
57264 }
int height
The height of this Entity's hitbox, in pixels.