Correct file seperator.

This commit is contained in:
Brianna 2019-07-10 23:54:26 -04:00
parent c66eda4062
commit 197b6c1f66
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ stages:
variables:
name: "UltimateStacker"
path: "/builds/$CI_PROJECT_PATH"
version: "1.6.3"
version: "1.6.4"
build:
stage: build

View File

@ -20,7 +20,7 @@ public class LootManager {
private final Map<EntityType, Lootable> registeredLootables = new HashMap<>();
private final String lootablesDir = UltimateStacker.getInstance().getDataFolder() + "/lootables";
private final String lootablesDir = UltimateStacker.getInstance().getDataFolder() + File.separator + "lootables";
public Lootable addLootable(Lootable lootable) {
return registeredLootables.put(lootable.getType(), lootable);