Skip to content

Commit

Permalink
forgot to add this stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Jsinco committed Aug 22, 2024
1 parent 778af1b commit 935a3cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/dre/brewery/storage/DataManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public static String serializeLocation(Location location) {

public static Location deserializeLocation(String string, boolean yawPitch) {
if (string == null) {
plugin.errorLog("Location is null!");
plugin.warningLog("Location is null!");
return null;
}

Expand Down Expand Up @@ -241,7 +241,7 @@ public static Location deserializeLocation(String string, boolean yawPitch) {


if (world == null) {
plugin.errorLog("World not found! " + loc[0]); // TODO: add command to purge stuff in non-existent worlds
plugin.warningLog("World not found! " + loc[0]); // TODO: add command to purge stuff in non-existent worlds
return null;
}

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: BreweryX
version: '${version}'
website: 'https://www.spigotmc.org/resources/breweryx.114777/'
main: com.dre.brewery.BreweryPlugin
load: POSTWORLD
softdepend: [LWC, LogBlock, WorldGuard, GriefPrevention, Vault, ChestShop, Shopkeepers, Towny, BlockLocker, Slimefun, PlaceholderAPI]
authors: [Jsinco, Mitality, Szarkans, Sn0wStorm, TTTheKing, Grafe]
folia-supported: true
Expand Down

0 comments on commit 935a3cb

Please sign in to comment.