Corrected version references in API v10 documentation

This commit is contained in:
Intelli 2024-05-06 18:18:56 -06:00
parent f3c631bbf5
commit 3e3496ad12
1 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@ logRemoval(String user, BlockState blockState)
## Getting Started
Ensure you're using CoreProtect 21.0 or higher. Add it as an external jar to your plugin in your IDE.
Alternatively, if using Maven, you can add it via the repository [https://maven.playpro.com](https://maven.playpro.com) (net.coreprotect, 21.0).
Ensure you're using CoreProtect 23.0 or higher. Add it as an external jar to your plugin in your IDE.
Alternatively, if using Maven, you can add it via the repository [https://maven.playpro.com](https://maven.playpro.com) (net.coreprotect, 23.0).
The first thing you need to do is get access to CoreProtect. You can do this by using code similar to the following:
@ -49,7 +49,7 @@ private CoreProtectAPI getCoreProtect() {
}
// Check that a compatible version of the API is loaded
if (CoreProtect.APIVersion() < 9) {
if (CoreProtect.APIVersion() < 10) {
return null;
}