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

◆ CanKillTile()

virtual bool Terraria.ModLoader.ModTile.CanKillTile ( int i,
int j,
ref bool blockDamaged )
inlinevirtualinherited

Allows you to determine whether or not the tile at the given coordinates can be hit by anything. Returns true by default. blockDamaged currently has no use.

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

Definition at line 272 of file ModTile.cs.

273 {
274 return true;
275 }