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

◆ ReplaceTile_IsValidSolid()

static bool Terraria.WorldGen.ReplaceTile_IsValidSolid ( int type)
inlinestaticprivate

Definition at line 53409 of file WorldGen.cs.

53410 {
53411 if (Main.tileSolid[type] && !Main.tileSolidTop[type])
53412 {
53413 if (!Main.tileRope[type])
53414 {
53415 return !Main.tileFrameImportant[type];
53416 }
53417 return true;
53418 }
53419 return false;
53420 }

References Terraria.Main.tileFrameImportant, Terraria.Main.tileRope, Terraria.Main.tileSolid, Terraria.Main.tileSolidTop, and System.type.