mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-22 09:01:57 -05:00
Hotfix for NotifyAction not checking server support
Removed NotifyPositionAction cpe ext entry, as only one entry is needed per extension, rather than per packet defined within an extension
This commit is contained in:
parent
ec958ff150
commit
6dc082c7d0
3 changed files with 8 additions and 2 deletions
|
@ -94,7 +94,6 @@ static struct CpeExt
|
|||
lightingMode_Ext = { "LightingMode", 1 },
|
||||
cinematicGui_Ext = { "CinematicGui", 1 },
|
||||
notifyAction_Ext = { "NotifyAction", 1 },
|
||||
notifyPositionAction_Ext = { "NotifyPositionAction", 1 },
|
||||
extTextures_Ext = { "ExtendedTextures", 1 },
|
||||
extBlocks_Ext = { "ExtendedBlocks", 1 };
|
||||
|
||||
|
@ -105,7 +104,6 @@ static struct CpeExt* cpe_clientExtensions[] = {
|
|||
&blockDefsExt_Ext, &bulkBlockUpdate_Ext, &textColors_Ext, &envMapAspect_Ext, &entityProperty_Ext, &extEntityPos_Ext,
|
||||
&twoWayPing_Ext, &invOrder_Ext, &instantMOTD_Ext, &fastMap_Ext, &setHotbar_Ext, &setSpawnpoint_Ext, &velControl_Ext,
|
||||
&customParticles_Ext, &pluginMessages_Ext, &extTeleport_Ext, &lightingMode_Ext, &cinematicGui_Ext, ¬ifyAction_Ext,
|
||||
¬ifyPositionAction_Ext,
|
||||
#ifdef CUSTOM_MODELS
|
||||
&customModels_Ext,
|
||||
#endif
|
||||
|
@ -905,6 +903,7 @@ void CPE_SendPluginMessage(cc_uint8 channel, cc_uint8* data) {
|
|||
|
||||
void CPE_SendNotifyAction(int action, cc_uint16 value) {
|
||||
cc_uint8 data[5];
|
||||
if (!Server.SupportsNotifyAction) return;
|
||||
|
||||
data[0] = OPCODE_NOTIFY_ACTION;
|
||||
{
|
||||
|
@ -916,6 +915,7 @@ void CPE_SendNotifyAction(int action, cc_uint16 value) {
|
|||
|
||||
void CPE_SendNotifyPositionAction(int action, int x, int y, int z) {
|
||||
cc_uint8 data[9];
|
||||
if (!Server.SupportsNotifyAction) return;
|
||||
|
||||
data[0] = OPCODE_NOTIFY_POSITION_ACTION;
|
||||
{
|
||||
|
@ -1044,6 +1044,8 @@ static void CPE_ExtEntry(cc_uint8* data) {
|
|||
if (ext->serverVersion == 2) {
|
||||
Protocol.Sizes[OPCODE_DEFINE_MODEL_PART] = 167;
|
||||
}
|
||||
} else if (ext == ¬ifyAction_Ext) {
|
||||
Server.SupportsNotifyAction = true;
|
||||
}
|
||||
#ifdef EXTENDED_TEXTURES
|
||||
else if (ext == &extTextures_Ext) {
|
||||
|
|
|
@ -41,6 +41,7 @@ static void Server_ResetState(void) {
|
|||
Server.SupportsPlayerClick = false;
|
||||
Server.SupportsPartialMessages = false;
|
||||
Server.SupportsFullCP437 = false;
|
||||
Server.SupportsNotifyAction = false;
|
||||
}
|
||||
|
||||
void Server_RetrieveTexturePack(const cc_string* url) {
|
||||
|
|
|
@ -65,6 +65,9 @@ CC_VAR extern struct _ServerConnectionData {
|
|||
cc_string Address;
|
||||
/* Port of the server if multiplayer, 0 if singleplayer */
|
||||
int Port;
|
||||
|
||||
/* Whether the server supports NotifyAction CPE */
|
||||
cc_bool SupportsNotifyAction;
|
||||
} Server;
|
||||
|
||||
/* If user hasn't previously accepted url, displays a dialog asking to confirm downloading it */
|
||||
|
|
Loading…
Reference in a new issue