Fix to output versions in crash logs
This commit is contained in:
parent
470070e2ce
commit
0888a95f2d
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ public class LoadController
|
|||
{
|
||||
for (ModContainer mc : loader.getModList())
|
||||
{
|
||||
ret.append("\n\t").append(mc.getModId()).append(" [").append(mc.getName()).append("] (").append(mc.getSource().getName()).append(") ");
|
||||
ret.append("\n\t").append(mc.getModId()).append("{").append(mc.getVersion()).append("} [").append(mc.getName()).append("] (").append(mc.getSource().getName()).append(") ");
|
||||
Joiner.on("->"). appendTo(ret, modStates.get(mc.getModId()));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue