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

◆ IsLockedDoor() [2/2]

static bool Terraria.WorldGen.IsLockedDoor ( Tile t)
inlinestatic

Definition at line 59729 of file WorldGen.cs.

59730 {
59731 if (t.type == 10 && t.frameY >= 594 && t.frameY <= 646)
59732 {
59733 return t.frameX < 54;
59734 }
59735 return false;
59736 }

References Terraria.Tile.frameY, and Terraria.Tile.type.