Changed GasLogger format to CSV, similar to stanhebben/MineTweaker3#133

This commit is contained in:
Tobias Wohlfarth 2016-03-03 00:25:41 +01:00
parent be46a8343d
commit 5c520e853c

View file

@ -28,7 +28,7 @@ public class GasLogger implements ICommandFunction {
Collections.sort(gases, COMPARATOR);
for (Gas gas : gases) {
System.out.println("Gas " + gas.getName());
MineTweakerAPI.logCommand("<gas:" + gas.getName() + "> -- " + gas.getLocalizedName());
MineTweakerAPI.logCommand("<gas:" + gas.getName() + ">, " + gas.getLocalizedName());
}
if (player != null) {