Skip to content

Commit

Permalink
fix(Log): 修复了骰点统计报错的问题 (sealdice#993)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiangze-Li authored Aug 12, 2024
1 parent 90f4d7b commit 7c41391
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dice/ext_exp.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ func cmdStValueMod(mctx *MsgContext, tmpl *GameSystemTemplate, attrs *Attributes
"type": "mod",
"attr": i.name,
"modExpr": i.expr,
"valOld": theOldValue,
"valNew": theNewValue,
"valOld": theOldValue.Value,
"valNew": theNewValue.Value,
"isInc": signText == "增加", // 增加还是扣除
"op": i.op,
})
Expand Down

0 comments on commit 7c41391

Please sign in to comment.