Skip to content

Commit

Permalink
fix: 进行1e5次钓鱼不出下界合金竿的问题 (#1051)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cu4water authored Oct 30, 2024
1 parent eb065e1 commit 3c72899
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/mcfish/fish.go
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ func init() {
thingName = "金竿"
case dice >= probabilities["钻石竿"].Min && dice < probabilities["钻石竿"].Max:
thingName = "钻石竿"
case dice >= probabilities["下界合金竿竿竿"].Min && dice < probabilities["下界合金竿竿竿"].Max:
thingName = "下界合金竿竿竿"
case dice >= probabilities["下界合金竿"].Min && dice < probabilities["下界合金竿"].Max:
thingName = "下界合金竿"
default:
thingName = "木竿"
}
Expand Down

0 comments on commit 3c72899

Please sign in to comment.