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

◆ IsTileSpelunkable()

virtual bool Terraria.ModLoader.ModTile.IsTileSpelunkable ( int i,
int j )
inlinevirtualinherited

Allows you to customize whether this tile can glow yellow while having the Spelunker buff, and is also detected by various pets.
This is only called if Main.tileSpelunker[type] is false.

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

Definition at line 352 of file ModTile.cs.

353 {
354 return false;
355 }