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

◆ Shimminate()

static void Terraria.WorldGen.Shimminate ( )
inlinestaticprivate

Definition at line 26543 of file WorldGen.cs.

26544 {
26546 {
26547 Point key = countedTile.Key;
26548 Main.tile[key.X, key.Y].shimmer(shimmer: true);
26549 Main.tile[key.X, key.Y].liquid = byte.MaxValue;
26550 if (Main.tile[key.X, key.Y].type == 5 || Main.tile[key.X, key.Y].type == 56 || (Main.tileCut[Main.tile[key.X, key.Y].type] && Main.tile[key.X, key.Y].type != 28))
26551 {
26552 KillTile(key.X, key.Y);
26553 }
26554 }
26555 }
static Dictionary< Point, bool > CountedTiles
Definition WorldGen.cs:1032
static void KillTile(int i, int j, bool fail=false, bool effectOnly=false, bool noItem=false)

References System.key, Terraria.Main.tile, and Terraria.Main.tileCut.