1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Merge pull request #3431 from Slimefun/chore/update-dough

Update dough
This commit is contained in:
TheBusyBiscuit 2022-01-18 12:08:02 +01:00 committed by GitHub
commit 4b68892d7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -43,6 +43,7 @@
* Added Spore Blossom as a fuel type for the Bio-Generator
* Added a new item setting for Freezers to allow them to use a 9:1 "vanilla" ratio instead of 1:1 (1:1 by default, like before)
* (API) Added `PlayerProfile#hasUnlockedEverything()` to check if a player has unlocked all researches
* Added support for the plugin "HuskTowns"
#### Changes
* (API) `BiomeMapParser` is now `public`
@ -56,6 +57,8 @@
* Fixed #3400
* Fixed rare issue where Slimefun would not load at all
* Fixed #3429
* Fixed "LogBlock" integration
* Fixed "Lands" integration
## Release Candidate 30 (31 Dec 2021)
https://thebusybiscuit.github.io/builds/TheBusyBiscuit/Slimefun4/stable/#30

View File

@ -350,7 +350,7 @@
<dependency>
<groupId>io.github.baked-libs</groupId>
<artifactId>dough-api</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>

View File

@ -140,7 +140,7 @@ public class IntegrationsManager {
private void onServerStart() {
try {
// Load Protection plugin integrations
protectionManager = new ProtectionManager(plugin.getServer());
protectionManager = new ProtectionManager(plugin);
} catch (Exception | LinkageError x) {
Slimefun.logger().log(Level.WARNING, x, () -> "Failed to load Protection plugin integrations for Slimefun v" + Slimefun.getVersion());
}