Skip to content

Commit

Permalink
Fix wrong level requirement for Trained Eye (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
KonaeAkira committed Aug 16, 2024
1 parent adf24e8 commit 691175c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["simulator", "solvers", "game_data"]

[package]
name = "raphael-xiv"
version = "0.13.2"
version = "0.13.3"
edition = "2021"
default-run = "raphael-xiv"

Expand All @@ -26,6 +26,8 @@ wasm-bindgen-futures = "0.4"
console_error_panic_hook = "0.1.7"
gloo-worker = { version = "0.5.0", features = ["futures"] }
web-time = "1.1.0"
# web-sys doesn't follow semver, so version needs to be pinned (https://github.com/emilk/egui/issues/4961)
web-sys = "=0.3.69"

[[bin]]
name = "webworker"
Expand Down
4 changes: 2 additions & 2 deletions simulator/src/actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ pub enum Action {
Groundwork,
DelicateSynthesis,
IntensiveSynthesis,
TrainedEye,
HeartAndSoul,
PrudentSynthesis,
TrainedFinesse,
TrainedEye,
ComboRefinedTouch,
QuickInnovation,
ImmaculateMend,
Expand Down Expand Up @@ -93,10 +93,10 @@ impl Action {
Action::Groundwork => 72,
Action::DelicateSynthesis => 76,
Action::IntensiveSynthesis => 78,
Action::TrainedEye => 80,
Action::HeartAndSoul => 86,
Action::PrudentSynthesis => 88,
Action::TrainedFinesse => 90,
Action::TrainedEye => 90,
Action::ComboRefinedTouch => 92,
Action::QuickInnovation => 96,
Action::ImmaculateMend => 98,
Expand Down

0 comments on commit 691175c

Please sign in to comment.