File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
PacketWrapper/src/main/java/com/comphenix/packetwrapper Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 18
18
*/
19
19
package com .comphenix .packetwrapper ;
20
20
21
+ import com .comphenix .packetwrapper .util .BackwardsCompatible ;
21
22
import com .comphenix .protocol .PacketType ;
22
23
import com .comphenix .protocol .events .PacketContainer ;
23
24
25
+ @ BackwardsCompatible
24
26
public class WrapperPlayServerAbilities extends AbstractPacket {
25
27
public static final PacketType TYPE = PacketType .Play .Server .ABILITIES ;
26
28
@@ -41,16 +43,16 @@ public void setInvulnerable(boolean value) {
41
43
handle .getBooleans ().write (0 , value );
42
44
}
43
45
44
- /**Misspelled.
45
- * @see #isInvulnerable()
46
+ /**
47
+ * @deprecated use {@link #isInvulnerable()} instead
46
48
*/
47
49
@ Deprecated
48
50
public boolean isInvulnurable () {
49
51
return isInvulnerable ();
50
52
}
51
53
52
- /**Misspelled.
53
- * @see #setInvulnerable(boolean)
54
+ /**
55
+ * @deprecated use {@link #setInvulnerable(boolean)} instead
54
56
*/
55
57
@ Deprecated
56
58
public void setInvulnurable (boolean value ) {
You can’t perform that action at this time.
0 commit comments