Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
Make it clear in error messages that api-version above 1.13 is also supported
Dieser Commit ist enthalten in:
Ursprung
fba9f4876b
Commit
3f6d0de989
@ -113,7 +113,7 @@ public final class CraftLegacy {
|
||||
}
|
||||
|
||||
public static Item fromLegacyData(Material material, short data) {
|
||||
Preconditions.checkArgument(material.isLegacy(), "fromLegacyData on modern Material. Did you forget to define api-version: 1.13 in your plugin.yml?");
|
||||
Preconditions.checkArgument(material.isLegacy(), "fromLegacyData on modern Material. Did you forget to define a modern (1.13+) api-version in your plugin.yml?");
|
||||
|
||||
MaterialData materialData = new MaterialData(material, (byte) data);
|
||||
|
||||
|
@ -173,7 +173,7 @@ public class Commodore
|
||||
Material.valueOf( "LEGACY_" + name );
|
||||
} catch ( IllegalArgumentException ex )
|
||||
{
|
||||
throw new AuthorNagException( "No legacy enum constant for " + name + ". Did you forget to define api-version: 1.13 in your plugin.yml?" );
|
||||
throw new AuthorNagException( "No legacy enum constant for " + name + ". Did you forget to define a modern (1.13+) api-version in your plugin.yml?" );
|
||||
}
|
||||
|
||||
super.visitFieldInsn( opcode, owner, "LEGACY_" + name, desc );
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren