Skip to content

Commit

Permalink
Fix strike enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerthox committed Aug 17, 2023
1 parent 50e1f22 commit d51784c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion arcdps/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arcdps"
version = "0.12.0"
version = "0.12.1"
authors = ["Zerthox", "Greaka"]
edition = "2021"
description = "Rust bindings for ArcDPS plugins"
Expand Down
2 changes: 1 addition & 1 deletion arcdps_evtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arcdps_evtc"
version = "0.6.0"
version = "0.6.1"
authors = ["Zerthox"]
edition = "2021"
description = "Rust bindings for the ArcDPS EVTC API"
Expand Down
6 changes: 3 additions & 3 deletions arcdps_evtc/src/strike.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,19 @@ pub enum Strike {
/// Skill downed the target.
///
/// Not a damage strike.
Downed = 10,
Downed = 9,

/// Skill dealt breakbar damage.
///
/// Not a damage strike.
Breakbar = 11,
Breakbar = 10,

/// On-activation event.
///
/// Not a damage strike.
///
/// *Arc: Source hit target if damaging buff.*
Activation = 12,
Activation = 11,
}

impl Strike {
Expand Down
2 changes: 1 addition & 1 deletion arcdps_parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arcdps_parse"
version = "0.6.0"
version = "0.6.1"
authors = ["Zerthox"]
edition = "2021"
description = "Parsing for ArcDPS EVTC logs"
Expand Down

0 comments on commit d51784c

Please sign in to comment.