Skip to content

Commit

Permalink
Fix typo in resource loader logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Melledy committed Dec 29, 2023
1 parent 599cd04 commit 09fba3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/emu/lunarcore/data/ResourceLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private static void loadFloorInfos() {
boolean missingGroupInfos = false;

if (!floorDir.exists()) {
LunarCore.getLogger().warn("Floor infos are missing, please check your resources folder: {resources}/Config/Level/Floor. Teleports and natural world spawns may not work!");
LunarCore.getLogger().warn("Floor infos are missing, please check your resources folder: {resources}/Config/LevelOutput/Floor. Teleports and natural world spawns may not work!");
return;
}

Expand Down Expand Up @@ -219,7 +219,7 @@ private static void loadFloorInfos() {

// Notify the server owner if we are missing any files
if (missingGroupInfos) {
LunarCore.getLogger().warn("Group infos are missing, please check your resources folder: {resources}/Config/Level/Group. Teleports and natural world spawns may not work!");
LunarCore.getLogger().warn("Group infos are missing, please check your resources folder: {resources}/Config/LevelOutput/Group. Teleports and natural world spawns may not work!");
}

// Done
Expand Down

0 comments on commit 09fba3b

Please sign in to comment.