File tree Expand file tree Collapse file tree 4 files changed +17
-11
lines changed
src/main/java/gg/archipelago/APClient Expand file tree Collapse file tree 4 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
77
88archivesBaseName = " Archipelago.MultiClient.Java"
99group = ' gg.archipelago.APClient'
10- version = ' 1.4 '
10+ version = ' 1.5 '
1111
1212java. toolchain. languageVersion = JavaLanguageVersion . of(16 )
1313
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public abstract class APClient {
4040 private final ItemManager itemManager ;
4141 private final DataManager dataManager ;
4242
43- public static final Version protocolVersion = new Version (0 ,2 ,1 );
43+ public static final Version protocolVersion = new Version (0 ,2 ,5 );
4444
4545 private int team ;
4646 private int slot ;
Original file line number Diff line number Diff line change 1+ package gg .archipelago .APClient ;
2+
3+ public class ItemFlags {
4+
5+ //Indicates you get items sent from other worlds.
6+ public static final int SEND_ITEMS = 0b001;
7+
8+ //send your own items to you (remote items game)
9+ public static final int SEND_OWN_ITEMS = 0b010;
10+
11+ //send starting inventory upon connect
12+ public static final int SEND_STARTING_INVENTORY = 0b100;
13+
14+
15+ }
Original file line number Diff line number Diff line change 55
66public class ConnectPacket extends APPacket {
77
8- //Indicates you get items sent from other worlds.
9- public static final int SEND_ITEMS = 0b001;
10-
11- //send your own items to you (remote items game)
12- public static final int SEND_OWN_ITEMS = 0b010;
13-
14- //send starting inventory upon connect
15- public static final int SEND_STARTING_INVENTORY = 0b100;
16-
178 @ SerializedName ("password" )
189 public String password ;
1910
You can’t perform that action at this time.
0 commit comments