Skip to content

Commit

Permalink
Adjusted the placement of the wire color.
Browse files Browse the repository at this point in the history
  • Loading branch information
RussDev7 committed Jul 17, 2023
1 parent 244a901 commit f0c43e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TEdit/Terraria/WorldAnalysis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ private static void WriteAnalyzeWorld(StreamWriter sb, World world, bool fullAna


sb.WriteLine("===Wires===");
sb.WriteLine("Red Wires: {0}", wireCounts[2]);
sb.WriteLine("Blue Wires: {0}", wireCounts[0]);
sb.WriteLine("Green Wires: {0}", wireCounts[1]);
sb.WriteLine("Red Wires: {0}", wireCounts[2]);
sb.WriteLine("Yellow Wires: {0}", wireCounts[3]);
sb.WriteLine("Total: {0}", wireCounts[0] + wireCounts[1] + wireCounts[2] + wireCounts[3]);

Expand Down

0 comments on commit f0c43e2

Please sign in to comment.