Skip to content

Commit be80a8c

Browse files
committed
Updated Lamp to 4.0.0-rc.13
1 parent b00195c commit be80a8c

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ dependencies {
5454
implementation(project(":api"))
5555

5656
implementation("org.lushplugins:LushLib:0.10.82")
57-
implementation("io.github.revxrsal:lamp.common:4.0.0-rc.12")
58-
implementation("io.github.revxrsal:lamp.bukkit:4.0.0-rc.12")
57+
implementation("io.github.revxrsal:lamp.common:4.0.0-rc.13")
58+
implementation("io.github.revxrsal:lamp.bukkit:4.0.0-rc.13")
5959
}
6060

6161
java {

src/main/java/org/lushplugins/pluginupdater/command/UpdateCommand.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,8 @@ public String update(CommandSender sender, @PluginName String pluginName) {
3838
}
3939
}
4040

41-
// TODO: Temporary fix for update all command
4241
@Command("updater update all")
4342
@CommandPermission("pluginupdater.downloadupdates")
44-
public String updateAll(CommandSender sender) {
45-
return this.updateAll(sender, false);
46-
}
47-
48-
@Command("updater update all --force")
49-
@CommandPermission("pluginupdater.downloadupdates")
50-
public String forceUpdateAll(CommandSender sender) {
51-
return this.updateAll(sender, true);
52-
}
53-
54-
// @Command("updater update all")
55-
// @CommandPermission("pluginupdater.downloadupdates")
5643
public String updateAll(CommandSender sender, @Switch("force") boolean force) {
5744
UpdateHandler updateHandler = PluginUpdater.getInstance().getUpdateHandler();
5845
AtomicInteger updateCount = new AtomicInteger(0);

0 commit comments

Comments
 (0)