geforkt von Mirrors/Paper
Don't save server properties when it's read only. Fixes BUKKIT-3250
Dieser Commit ist enthalten in:
Ursprung
0216d09033
Commit
118682ce5c
@ -69,6 +69,11 @@ public class PropertyManager {
|
||||
FileOutputStream fileoutputstream = null;
|
||||
|
||||
try {
|
||||
// CraftBukkit start - Don't attempt writing to file if it's read only
|
||||
if (!this.c.canWrite()) {
|
||||
return;
|
||||
}
|
||||
// CraftBukkit end
|
||||
fileoutputstream = new FileOutputStream(this.c);
|
||||
this.properties.store(fileoutputstream, "Minecraft server properties");
|
||||
} catch (Exception exception) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren