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;
|
FileOutputStream fileoutputstream = null;
|
||||||
|
|
||||||
try {
|
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);
|
fileoutputstream = new FileOutputStream(this.c);
|
||||||
this.properties.store(fileoutputstream, "Minecraft server properties");
|
this.properties.store(fileoutputstream, "Minecraft server properties");
|
||||||
} catch (Exception exception) {
|
} catch (Exception exception) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren