SteamWar/SpigotCore
Archiviert
13
0

Merge remote-tracking branch 'origin/CommandFramework' into CommandFramework

Dieser Commit ist enthalten in:
yoyosource 2021-05-25 13:07:26 +02:00
Commit da17dd99bc

Datei anzeigen

@ -35,7 +35,6 @@ public class SWException {
static { static {
List<String> reasons = new ArrayList<>(); List<String> reasons = new ArrayList<>();
reasons.add("Initializing Legacy Material Support.");
reasons.add("Could not save the list after adding a user."); reasons.add("Could not save the list after adding a user.");
reasons.add("Could not save spigot.yml"); reasons.add("Could not save spigot.yml");
reasons.add("Failed to save operators list:"); reasons.add("Failed to save operators list:");
@ -68,6 +67,9 @@ public class SWException {
reasons.add("Ignoring unknown attribute"); reasons.add("Ignoring unknown attribute");
reasons.add("Skipping player strafe phase because no player was found"); reasons.add("Skipping player strafe phase because no player was found");
reasons.add("Couldn't save chunk; already in use by another instance of Minecraft?"); reasons.add("Couldn't save chunk; already in use by another instance of Minecraft?");
reasons.add("Failed to save player data for ");
reasons.add("Failed to check session lock for world located at");
reasons.add("Saving oversized chunk ");
ignorereasons = Collections.unmodifiableList(reasons); ignorereasons = Collections.unmodifiableList(reasons);
} }