Change tooltips to use RF instead of MJ

This commit is contained in:
ChatFawkes 2014-09-15 00:59:00 -04:00
parent 446bf4454b
commit 4af697a5e6

View file

@ -25,7 +25,7 @@ public final class PipeToolTipManager {
static {
for (Map.Entry<Class<? extends Pipe<?>>, Integer> pipe : PipeTransportPower.powerCapacities.entrySet()) {
PipeToolTipManager.addToolTip(pipe.getKey(), String.format("%d MJ/t", pipe.getValue()));
PipeToolTipManager.addToolTip(pipe.getKey(), String.format("%d RF/t", pipe.getValue()));
}
}