Skip to content

Commit ce10db6

Browse files
committed
fix purify
1 parent 1228b69 commit ce10db6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rs/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ lto = "thin"
1616
[dependencies]
1717
base64 = { version = "0.22", default-features = false, features = ["alloc"] }
1818
bb8-postgres = { version = "0.9", features = ["with-serde_json-1"] }
19-
brotli = { version = "7", default-features = false, features = ["std"] }
19+
brotli = { version = "8", default-features = false, features = ["std"] }
2020
etg = { version = "0.1", default-features = false, path = "../" }
2121
futures = { version = "0.3", default-features = false, features = ["alloc"] }
2222
fxhash = "0.2"

src/rs/src/skill.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4170,7 +4170,7 @@ impl Skill {
41704170
let thing = ctx.get_thing_mut(t);
41714171
match thing.status.entry(Stat::poison) {
41724172
StatusEntry::Vacant(hole) => {
4173-
hole.status.0.insert(hole.idx, (hole.stat, -2));
4173+
hole.status.0.insert(hole.idx, (hole.stat, -x));
41744174
}
41754175
StatusEntry::Occupied(spot) => {
41764176
let poison = &mut spot.status.0[spot.idx].1;

0 commit comments

Comments
 (0)