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

◆ ReplaceTile_IsValidSolid()

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

Definition at line 56982 of file WorldGen.cs.

56983 {
56984 if (Main.tileSolid[type] && !Main.tileSolidTop[type])
56985 {
56986 if (!Main.tileRope[type])
56987 {
56988 return !Main.tileFrameImportant[type];
56989 }
56990 return true;
56991 }
56992 return false;
56993 }

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