1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

Update dough

This commit is contained in:
Daniel Walsh 2022-01-16 16:54:19 +00:00
parent 0a94854629
commit 220cfc9058
No known key found for this signature in database
GPG Key ID: DA4CCF44247893FD
3 changed files with 3 additions and 2 deletions

View File

@ -47,6 +47,7 @@
#### Changes
* (API) `BiomeMapParser` is now `public`
* (API) `BiomeMap.fromJson` now allows you to specify if you want the BiomeMap to be parsed leniently
* Updated dough, fixing some issues
#### Fixes
* Fixed #3390

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());
}