Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 21:10:17 +01:00
Implement getMotd, and reload the motd. Adds BUKKIT-1799
Dieser Commit ist enthalten in:
Ursprung
00efc8c464
Commit
d7272f42ef
@ -504,6 +504,7 @@ public final class CraftServer implements Server {
|
|||||||
console.spawnAnimals = config.getBoolean("spawn-animals", console.spawnAnimals);
|
console.spawnAnimals = config.getBoolean("spawn-animals", console.spawnAnimals);
|
||||||
console.pvpMode = config.getBoolean("pvp", console.pvpMode);
|
console.pvpMode = config.getBoolean("pvp", console.pvpMode);
|
||||||
console.allowFlight = config.getBoolean("allow-flight", console.allowFlight);
|
console.allowFlight = config.getBoolean("allow-flight", console.allowFlight);
|
||||||
|
console.motd = config.getString("motd", console.motd);
|
||||||
monsterSpawn = configuration.getInt("spawn-limits.monsters");
|
monsterSpawn = configuration.getInt("spawn-limits.monsters");
|
||||||
animalSpawn = configuration.getInt("spawn-limits.animals");
|
animalSpawn = configuration.getInt("spawn-limits.animals");
|
||||||
waterAnimalSpawn = configuration.getInt("spawn-limits.water-animals");
|
waterAnimalSpawn = configuration.getInt("spawn-limits.water-animals");
|
||||||
@ -1194,4 +1195,8 @@ public final class CraftServer implements Server {
|
|||||||
public boolean isPrimaryThread() {
|
public boolean isPrimaryThread() {
|
||||||
return Thread.currentThread().equals(console.primaryThread);
|
return Thread.currentThread().equals(console.primaryThread);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getMotd() {
|
||||||
|
return console.motd;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren