Changed GasLogger format to CSV, similar to stanhebben/MineTweaker3#133
This commit is contained in:
parent
be46a8343d
commit
5c520e853c
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue