Compare commits

...

4 Commits

Author SHA1 Message Date
Pierre Maurice Schwang
93bb134782 fix: return false if PLACE_VEHICLE and missing flag 2024-02-17 20:28:17 +01:00
Alexander Brandes
499d3c39bc Remove static print out of legacy schematic URL (#4341)
Signed-off-by: Alexander Brandes <mc.cache@web.de>
2024-02-16 20:23:12 +01:00
renovate[bot]
3d56937f14 Update fawe to v2.9.0 (#4335)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-12 22:18:56 +01:00
Alexander Brandes
0f1c2cb4e4 Back to snapshot for development
Signed-off-by: Alexander Brandes <mc.cache@web.de>
2024-02-12 20:32:46 +01:00
4 changed files with 3 additions and 4 deletions

View File

@@ -20,7 +20,6 @@ package com.plotsquared.core.command;
import com.google.inject.Inject;
import com.plotsquared.core.configuration.Settings;
import com.plotsquared.core.configuration.caption.StaticCaption;
import com.plotsquared.core.configuration.caption.TranslatableCaption;
import com.plotsquared.core.permissions.Permission;
import com.plotsquared.core.player.PlotPlayer;
@@ -202,7 +201,6 @@ public class Download extends SubCommand {
.tag("delete", Tag.preProcessParsed("Not available"))
.build()
);
player.sendMessage(StaticCaption.of(value.toString()));
}
}
));

View File

@@ -551,6 +551,7 @@ public class EventDispatcher {
)
);
}
return false;
}
default -> {
}

View File

@@ -22,7 +22,7 @@ plugins {
}
group = "com.intellectualsites.plotsquared"
version = "7.3.4"
version = "7.3.5-SNAPSHOT"
if (!File("$rootDir/.git").exists()) {
logger.lifecycle("""

View File

@@ -13,7 +13,7 @@ log4j = "2.19.0"
# Plugins
worldedit = "7.2.18"
fawe = "2.8.4"
fawe = "2.9.0"
placeholderapi = "2.11.5"
luckperms = "5.4"
essentialsx = "2.20.1"