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

◆ IsTileDangerous()

virtual bool Terraria.ModLoader.ModTile.IsTileDangerous ( int i,
int j,
Player player )
inlinevirtualinherited

Allows you to determine whether this tile glows red when the given player has the Dangersense buff.
This is only called on the local client.

Parameters
iThe x position in tile coordinates.
jThe y position in tile coordinates.
playerMain.LocalPlayer

Definition at line 328 of file ModTile.cs.

329 {
330 return false;
331 }