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

◆ ZoneSkyHeight

bool Terraria.Player.ZoneSkyHeight
getset

If true, then this player is the top 35% of the world.
NOTE: Vanilla uses a lot of different conditions for what counts as space. This flag is never used in vanilla, but the logic behind it is used for NPC shops and enemy spawns.

Definition at line 3947 of file Player.cs.

3948 {
3949 get
3950 {
3951 return zone3[0];
3952 }
3953 set
3954 {
3955 zone3[0] = value;
3956 }
3957 }
BitsByte zone3
Definition Player.cs:1528

Referenced by Terraria.Player.UpdateBiomes().