Skip to content

Commit

Permalink
Remove 3.3.5 from AddonInfo struct
Browse files Browse the repository at this point in the history
The struct isn't used for 3.3.5.
  • Loading branch information
Gtker committed Dec 16, 2024
1 parent 881a27d commit d30a0ae
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 20 deletions.
12 changes: 0 additions & 12 deletions intermediate_representation.json
Original file line number Diff line number Diff line change
Expand Up @@ -204098,12 +204098,6 @@
"minor": null,
"patch": null,
"build": null
},
{
"major": 3,
"minor": 3,
"patch": 5,
"build": null
}
]
}
Expand Down Expand Up @@ -561058,12 +561052,6 @@
"minor": null,
"patch": null,
"build": null
},
{
"major": 3,
"minor": 3,
"patch": 5,
"build": null
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ struct AddonInfo {
u32 addon_crc;
u32 addon_extra_crc;
} {
versions = "1 2 3.3.5";
versions = "1 2";
}

/// Sent after receiving [SMSG_AUTH_CHALLENGE].
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::Message;
use std::io::{Read, Write};

use crate::shared::addon_info_vanilla_tbc_wrath::AddonInfo;
use crate::shared::addon_info_vanilla_tbc::AddonInfo;

/// Sent after receiving [`SMSG_AUTH_CHALLENGE`](crate::vanilla::SMSG_AUTH_CHALLENGE).
/// Followed by [`SMSG_AUTH_RESPONSE`](crate::vanilla::SMSG_AUTH_RESPONSE).
Expand Down
4 changes: 2 additions & 2 deletions wow_world_messages/src/world/shared/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ pub use crate::manual::shared::*;
pub use wow_world_base::shared::*;
#[cfg(any(feature = "tbc", feature = "wrath"))]
pub mod addon_tbc_wrath;
#[cfg(any(feature = "vanilla", feature = "tbc", feature = "wrath"))]
pub mod addon_info_vanilla_tbc_wrath;
#[cfg(any(feature = "vanilla", feature = "tbc"))]
pub mod addon_info_vanilla_tbc;
#[cfg(any(feature = "tbc", feature = "wrath"))]
pub mod auction_enchantment_tbc_wrath;
#[cfg(any(feature = "tbc", feature = "wrath"))]
Expand Down
2 changes: 1 addition & 1 deletion wow_world_messages/src/world/tbc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ pub use wow_world_base::shared::relation_type_tbc_wrath::*;
pub use wow_world_base::shared::spline_flag_vanilla_tbc::*;
pub use wow_world_base::shared::update_flag_vanilla_tbc::*;
pub use crate::shared::addon_tbc_wrath::*;
pub use crate::shared::addon_info_vanilla_tbc_wrath::*;
pub use crate::shared::addon_info_vanilla_tbc::*;
pub(crate) mod arena_team_member;
pub use arena_team_member::*;
pub use crate::shared::auction_enchantment_tbc_wrath::*;
Expand Down
2 changes: 1 addition & 1 deletion wow_world_messages/src/world/vanilla/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ pub use wow_world_base::shared::spline_flag_vanilla_tbc::*;
pub use wow_world_base::shared::update_flag_vanilla_tbc::*;
pub(crate) mod addon;
pub use addon::*;
pub use crate::shared::addon_info_vanilla_tbc_wrath::*;
pub use crate::shared::addon_info_vanilla_tbc::*;
pub(crate) mod auction_list_item;
pub use auction_list_item::*;
pub(crate) mod aura_log;
Expand Down
1 change: 0 additions & 1 deletion wow_world_messages/src/world/wrath/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ pub use achievement_in_progress::*;
pub(crate) mod action_button;
pub use action_button::*;
pub use crate::shared::addon_tbc_wrath::*;
pub use crate::shared::addon_info_vanilla_tbc_wrath::*;
pub(crate) mod arena_team_member;
pub use arena_team_member::*;
pub use crate::shared::auction_enchantment_tbc_wrath::*;
Expand Down
2 changes: 1 addition & 1 deletion wowm_language/src/docs/addoninfo.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AddonInfo

## Client Version 1, Client Version 2, Client Version 3.3.5
## Client Version 1, Client Version 2

### Wowm Representation

Expand Down

0 comments on commit d30a0ae

Please sign in to comment.