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

◆ ShouldFloatInWater

bool Terraria.Player.ShouldFloatInWater
get

Definition at line 3347 of file Player.cs.

3348 {
3349 get
3350 {
3352 {
3353 if (mount.Active)
3354 {
3355 return mount.Type == 37;
3356 }
3357 return true;
3358 }
3359 return false;
3360 }
3361 }
bool Active
Definition Mount.cs:345
bool canFloatInWater
Definition Player.cs:2293