Skip to content

Commit

Permalink
Forgot to export engine weight
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielBoudreau committed Jul 17, 2018
1 parent 289370f commit 2d9dd3a
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -19,7 +19,7 @@
/**
* Exports the Engine roster into a comma delimitated file (CSV).
* Order stored: Number, Road, Model, Length, Owner, Built, Location,
* -, Track, Consist, Moves, Last, Value, HP, Type, Comment, Misc.
* -, Track, Consist, Moves, Last, Value, HP, Weight, Type, Comment, Misc.
*
* @author Daniel Boudreau Copyright (C) 2010
*
Expand Down Expand Up @@ -125,6 +125,8 @@ public void writeFile(String name) {
del +
Bundle.getMessage("HP") +
del +
Bundle.getMessage("WeightTons") +
del +
Bundle.getMessage("Type") +
del +
Bundle.getMessage("Comment") +
Expand Down Expand Up @@ -184,6 +186,8 @@ public void writeFile(String name) {
del +
engine.getHp() +
del +
engine.getWeightTons() +
del +
engine.getTypeName() +
del +
comment +
Expand Down

0 comments on commit 2d9dd3a

Please sign in to comment.