Compare commits

...

2 Commits

Author SHA1 Message Date
90c990e632 Merge pull request 'Vec-ing is hard' (#6) from combo_targets into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #6
2021-06-21 18:36:07 -04:00
a2822b17ae Vec-ing is hard
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-06-20 21:04:07 +00:00

View File

@ -336,10 +336,10 @@ pub struct ComboStep3 {
#[pso_message(0x46)]
pub struct TargetsHit {
num_of_targets: [u8; 4], // thats a lot of targets?
client2: u8, // TODO: what even is this?
target2: u8, // TODO: what even is this?
unknown2: [u8; 2],
#[length_of(targets)]
num_of_targets: u32, // thats a lot of targets?
#[length_is(num_of_targets)]
targets: Vec<u32>,
}
#[pso_message(0x47)]