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

◆ ActuallyPlaceExplosive()

void Terraria.GameContent.Biomes.DeadMansChestBiome.ActuallyPlaceExplosive ( Point position)
inlineprivate

Definition at line 587 of file DeadMansChestBiome.cs.

588 {
589 Tile tile = Main.tile[position.X, position.Y];
590 tile.type = 141;
591 tile.frameX = (tile.frameY = 0);
592 tile.slope(0);
593 tile.halfBrick(halfBrick: false);
594 WorldGen.TileFrame(position.X, position.Y, resetFrame: true);
595 }

References Terraria.Tile.halfBrick(), Terraria.Tile.slope(), Terraria.Main.tile, Terraria.WorldGen.TileFrame(), Microsoft.Xna.Framework.Point.X, and Microsoft.Xna.Framework.Point.Y.

Referenced by Terraria.GameContent.Biomes.DeadMansChestBiome.Place().