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

◆ TryProtectingSpawnedItems()

static void Terraria.WorldGen.TryProtectingSpawnedItems ( )
inlinestatic

Definition at line 23387 of file WorldGen.cs.

23388 {
23389 for (int i = 0; i < 400; i++)
23390 {
23391 Item item = Main.item[i];
23393 {
23394 item.timeSinceItemSpawned -= 18000;
23395 }
23396 }
23397 }
static bool EligibleForSpawnProtection(Item item)

References System.item, and Terraria.Main.item.