Fix Region.Prototype.SECTION_PATH #165
@ -42,7 +42,6 @@ import org.bukkit.inventory.meta.ItemMeta;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
import org.bukkit.scheduler.BukkitTask;
|
||||
|
||||
import java.nio.file.Paths;
|
||||
import java.util.UUID;
|
||||
import java.util.logging.Level;
|
||||
|
||||
|
@ -105,7 +105,6 @@ public class Region {
|
||||
}
|
||||
|
||||
public static class Prototype{
|
||||
private static final String SECTION_PATH = Bukkit.getWorlds().get(0).getWorldFolder().getAbsolutePath() + "/";
|
||||
private static final Map<String, Prototype> prototypes = new HashMap<>();
|
||||
|
||||
|
||||
private final int sizeX;
|
||||
@ -147,7 +146,7 @@ public class Region {
|
||||
}
|
||||
|
||||
public void fastreset(Region region){
|
||||
File file = new File(SECTION_PATH + schematic);
|
||||
File file = new File(schematic);
|
||||
int x = region.minX + offsetX + sizeX/2;
|
||||
int y = region.minY + offsetY;
|
||||
int z = region.minZ + offsetZ + sizeZ/2;
|
||||
@ -166,7 +165,7 @@ public class Region {
|
||||
int y = region.minY + offsetY;
|
||||
int z = region.minZ + offsetZ + sizeZ / 2;
|
||||
if(schem == null)
|
||||
paste(new File(SECTION_PATH + schematic), x, y, z, rotate);
|
||||
paste(new File(schematic), x, y, z, rotate);
|
||||
else
|
||||
paste(schem.load(), x, y, z, rotate);
|
||||
}
|
||||
@ -180,7 +179,7 @@ public class Region {
|
||||
int y = region.minY + testblock.offsetY - 1;
|
||||
int z = region.minZ + offsetZ + sizeZ / 2;
|
||||
if(schem == null)
|
||||
paste(new File(SECTION_PATH + protectSchematic), x, y, z, rotate);
|
||||
paste(new File(protectSchematic), x, y, z, rotate);
|
||||
else
|
||||
paste(schem.load(), x, y, z, rotate);
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren
Das ist nicht der korrekte Pfad (das ist der Weltenordner, nicht der Serverordner).
Im Weltenordner sollen keine Sections liegen, da liegen schließlich 100e von Welten. Streiche den SECTION_PATH ersatzlos ganz raus (relative Pfade)
Und wie soll das dann funktionieren?
Also wie baue ich den Pfad zusammen?
Current Working Directory ist der Serverordner. Du strichst ihn einfach. Du nimmst einfach nur den Pfad aus der sections.yml. Relative Pfade....
Das musst du mir mal nochmal genau erklären. Wo genau liegt die sections.yml in dem Weltordner, im Serverordner oder wo?
sections.yml liegt im Weltordner, aber darum geht es hier nicht. Es geht hier um den Grund-Pfad zu den Section-SCHEMATICS, und wie du am alten SECTION_PATH siehst, ist das generell der Serverordner.