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

◆ GetBuilderAccsCountToShow()

static void Terraria.Main.GetBuilderAccsCountToShow ( Player plr,
out int blockReplaceIcons,
out int torchGodIcons,
out int totalDrawnIcons )
inlinestaticprivate

Definition at line 61285 of file Main.cs.

61286 {
61288 torchGodIcons = (plr.unlockedBiomeTorches ? 1 : 0);
61289 totalDrawnIcons = plr.InfoAccMechShowWires.ToInt() * 6 + plr.rulerLine.ToInt() + plr.rulerGrid.ToInt() + plr.autoActuator.ToInt() + plr.autoPaint.ToInt() + blockReplaceIcons + torchGodIcons;
61290 }