We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c904795 commit 02debe3Copy full SHA for 02debe3
src/main/java/org/mvplugins/multiverse/signportals/MultiverseSignPortals.java
@@ -24,11 +24,11 @@
24
@Service
25
public class MultiverseSignPortals extends MultiversePlugin {
26
27
+ private static final double TARGET_CORE_API_VERSION = 5.0;
28
+
29
private MultiverseCoreApi core;
30
private PluginServiceLocator serviceLocator;
31
- private final static int requiresProtocol = 50;
-
32
/** This fires before I get Enabled. */
33
public void onLoad() {
34
Logging.init(this);
@@ -96,7 +96,7 @@ public String getVersionInfo() {
96
}
97
98
@Override
99
- public int getTargetCoreProtocolVersion() {
100
- return requiresProtocol;
+ public double getTargetCoreVersion() {
+ return TARGET_CORE_API_VERSION;
101
102
0 commit comments