Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-10 05:20:04 +01:00
Fixed //help and /we help after zml2008 broke it :)
Dieser Commit ist enthalten in:
Ursprung
050442fac3
Commit
479253821e
@ -442,10 +442,13 @@ public class UtilityCommands {
|
|||||||
max = -1
|
max = -1
|
||||||
)
|
)
|
||||||
@Console
|
@Console
|
||||||
public static void help(CommandContext args, WorldEdit we,
|
public void help(CommandContext args, LocalSession session, LocalPlayer player,
|
||||||
LocalSession session, LocalPlayer player, EditSession editSession)
|
EditSession editSession) throws WorldEditException {
|
||||||
throws WorldEditException {
|
|
||||||
|
|
||||||
|
help(args, we, session, player, editSession);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void help(CommandContext args, WorldEdit we, LocalSession session, LocalPlayer player, EditSession editSession) {
|
||||||
final CommandsManager<LocalPlayer> commandsManager = we.getCommandsManager();
|
final CommandsManager<LocalPlayer> commandsManager = we.getCommandsManager();
|
||||||
|
|
||||||
if (args.argsLength() == 0) {
|
if (args.argsLength() == 0) {
|
||||||
|
@ -111,9 +111,8 @@ public class WorldEditCommands {
|
|||||||
max = -1
|
max = -1
|
||||||
)
|
)
|
||||||
@Console
|
@Console
|
||||||
public static void help(CommandContext args, WorldEdit we,
|
public void help(CommandContext args, LocalSession session, LocalPlayer player,
|
||||||
LocalSession session, LocalPlayer player, EditSession editSession)
|
EditSession editSession) throws WorldEditException {
|
||||||
throws WorldEditException {
|
|
||||||
|
|
||||||
UtilityCommands.help(args, we, session, player, editSession);
|
UtilityCommands.help(args, we, session, player, editSession);
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren