Skip to content

Commit 5c520e8

Browse files
committed
Changed GasLogger format to CSV, similar to stanhebben/MineTweaker3#133
1 parent be46a83 commit 5c520e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/modtweaker2/mods/mekanism/commands/GasLogger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void execute(String[] arguments, IPlayer player) {
2828
Collections.sort(gases, COMPARATOR);
2929
for (Gas gas : gases) {
3030
System.out.println("Gas " + gas.getName());
31-
MineTweakerAPI.logCommand("<gas:" + gas.getName() + "> -- " + gas.getLocalizedName());
31+
MineTweakerAPI.logCommand("<gas:" + gas.getName() + ">, " + gas.getLocalizedName());
3232
}
3333

3434
if (player != null) {

0 commit comments

Comments
 (0)