-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '0.6.4' into 0.6.4-WarPartyFeature
- Loading branch information
Showing
5 changed files
with
40 additions
and
30 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
common/src/main/java/dev/lotnest/sequoia/core/websocket/WSConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* | ||
* Copyright © sequoia-mod 2025. | ||
* This file is released under LGPLv3. See LICENSE for full license details. | ||
*/ | ||
package dev.lotnest.sequoia.core.websocket; | ||
|
||
public final class WSConstants { | ||
public static final int ACK = 99; | ||
|
||
private WSConstants() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
common/src/main/java/dev/lotnest/sequoia/core/websocket/WSStateOpCodeType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright © sequoia-mod 2025. | ||
* This file is released under LGPLv3. See LICENSE for full license details. | ||
*/ | ||
package dev.lotnest.sequoia.core.websocket; | ||
|
||
public enum WSStateOpCodeType { | ||
INVALID, | ||
LOCATION_SERVICE, | ||
LOOT_POOL, | ||
GUILD_MAP, | ||
GUILD_WAR_RESULTS; | ||
|
||
public static WSStateOpCodeType fromValue(int value) { | ||
if (value < 0 || value >= values().length) { | ||
return INVALID; | ||
} | ||
return values()[value]; | ||
} | ||
|
||
public int getValue() { | ||
return ordinal(); | ||
} | ||
} |
24 changes: 0 additions & 24 deletions
24
.../src/main/java/dev/lotnest/sequoia/core/websocket/messages/GLocationServiceWSMessage.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters