clean up comments
This commit is contained in:
parent
38d47f93f3
commit
f19eecb7d3
@ -165,7 +165,7 @@ pub struct PlayerTeleported {
|
|||||||
#[pso_message(0x25)]
|
#[pso_message(0x25)]
|
||||||
pub struct PlayerEquipItem {
|
pub struct PlayerEquipItem {
|
||||||
item_id: u32,
|
item_id: u32,
|
||||||
sub_menu: u8, // changes based on which menu used to equip item. f12 -> item pack -> items = 0, quick and f12 -> item pack -> equip = 6
|
sub_menu: u8,
|
||||||
unknown1: u16,
|
unknown1: u16,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -419,7 +419,7 @@ pub struct LobbyEmote {
|
|||||||
pub struct RemoveItemFromFloor {
|
pub struct RemoveItemFromFloor {
|
||||||
client_id: u8,
|
client_id: u8,
|
||||||
unknown: u8,
|
unknown: u8,
|
||||||
map_area: u8, // change to u16 to be consistent with other packets
|
map_area: u8,
|
||||||
unknown2: u8,
|
unknown2: u8,
|
||||||
item_id: u32,
|
item_id: u32,
|
||||||
}
|
}
|
||||||
@ -427,16 +427,14 @@ pub struct RemoveItemFromFloor {
|
|||||||
#[pso_message(0x5A)]
|
#[pso_message(0x5A)]
|
||||||
pub struct PickupItem {
|
pub struct PickupItem {
|
||||||
item_id: u32,
|
item_id: u32,
|
||||||
map_area: u8, // change to u16 to be consistent with other packets
|
map_area: u8,
|
||||||
unknown: [u8; 3],
|
unknown: [u8; 3],
|
||||||
}
|
}
|
||||||
|
|
||||||
// this name may be a bit incorrect, it differs from ItemDrop only in that
|
|
||||||
// it does not have a y as DropCoordinates only specifies an xz
|
|
||||||
#[pso_message(0x5D)]
|
#[pso_message(0x5D)]
|
||||||
pub struct DropSplitStack {
|
pub struct DropSplitStack {
|
||||||
pub map_area: u8, // change to u16 to be consistent with other packets
|
pub map_area: u8,
|
||||||
pub variety: u8, // what is variety used for? is it ever non-0?
|
pub variety: u8,
|
||||||
pub unknown1: u16,
|
pub unknown1: u16,
|
||||||
pub x: f32,
|
pub x: f32,
|
||||||
pub z: f32,
|
pub z: f32,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user