Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Check1x1()

static void Terraria.WorldGen.Check1x1 ( int x,
int y,
int type )
inlinestatic

Definition at line 36274 of file WorldGen.cs.

36275 {
36276 if (Main.tile[x, y + 1] != null)
36277 {
36278 if (!SolidTileAllowBottomSlope(x, y + 1))
36279 {
36280 KillTile(x, y);
36281 }
36283 {
36284 KillTile(x, y);
36285 }
36286 }
36287 }
static void KillTile(int i, int j, bool fail=false, bool effectOnly=false, bool noItem=false)
static bool HasValidGroundForAbigailsFlowerBelowSpot(int x, int y)
static bool SolidTileAllowBottomSlope(int i, int j)

References Terraria.Main.tile, and System.type.