mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-27 04:25:19 +01:00
fix: Diag-Command throws exception because of invalid String#format
The dependencyVersion accidentally got put as an arg into Player#sendMessage instead of the String#format
This commit is contained in:
parent
f7e46be0d9
commit
c027ab8b4c
@ -1,7 +1,7 @@
|
||||
package com.craftaro.core.core;
|
||||
|
||||
import com.craftaro.core.commands.AbstractCommand;
|
||||
import com.craftaro.core.SongodaCore;
|
||||
import com.craftaro.core.commands.AbstractCommand;
|
||||
import com.craftaro.core.compatibility.ClassMapping;
|
||||
import com.craftaro.core.compatibility.ServerProject;
|
||||
import com.craftaro.core.compatibility.ServerVersion;
|
||||
@ -52,11 +52,13 @@ public class SongodaCoreDiagCommand extends AbstractCommand {
|
||||
sender.sendMessage("Plugins:");
|
||||
|
||||
for (PluginInfo plugin : SongodaCore.getPlugins()) {
|
||||
sender.sendMessage(String.format("%s v%s (Core v%s) (Dependency: %s)",
|
||||
sender.sendMessage(String.format(
|
||||
"%s v%s (Core v%s) (Dependencies v%s)",
|
||||
plugin.getJavaPlugin().getName(),
|
||||
plugin.getJavaPlugin().getDescription().getVersion(),
|
||||
plugin.getCoreLibraryVersion()),
|
||||
plugin.getDependencyVersion());
|
||||
plugin.getCoreLibraryVersion(),
|
||||
plugin.getDependencyVersion()
|
||||
));
|
||||
}
|
||||
|
||||
sender.sendMessage("");
|
||||
|
Loading…
Reference in New Issue
Block a user