mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-27 19:24:44 +02:00
Wire missing NMS
This commit is contained in:
@ -56,6 +56,7 @@ public class PlayerAttackCooldownExploitPreventionLayer extends AbstractCompatib
|
||||
case NMS_1_13_2:
|
||||
case NMS_1_14_4:
|
||||
case NMS_1_15_2:
|
||||
case NMS_1_16_1:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
@ -189,6 +190,8 @@ public class PlayerAttackCooldownExploitPreventionLayer extends AbstractCompatib
|
||||
return wireNMS("dY", "s", "dZ", "getHandle");
|
||||
case NMS_1_15_2:
|
||||
return wireNMS("ex", "s", "ey", "getHandle");
|
||||
case NMS_1_16_1:
|
||||
return wireNMS("eR", "getAttackCooldown", "resetAttackCooldown", "getHandle");
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -48,8 +48,8 @@ public class NMSConstants {
|
||||
return "v1_14_R1";
|
||||
case NMS_1_15_2:
|
||||
return "v1_15_R1";
|
||||
case NMS_1_16:
|
||||
break;
|
||||
case NMS_1_16_1:
|
||||
return "v1_16_R1";
|
||||
case UNSUPPORTED:
|
||||
break;
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ public enum NMSVersion {
|
||||
NMS_1_15_2("1.15.2"),
|
||||
|
||||
//1.16
|
||||
NMS_1_16("1.16"),
|
||||
NMS_1_16_1("1.16.1"),
|
||||
|
||||
//Version not known to this build of mcMMO
|
||||
UNSUPPORTED("unsupported");
|
||||
|
Reference in New Issue
Block a user