Skip to content

Commit

Permalink
修复伤害日志错误增加字符的计算符
Browse files Browse the repository at this point in the history
  • Loading branch information
RancherJie committed Jul 5, 2024
1 parent bd543ae commit 9816d6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game/game.js
Original file line number Diff line number Diff line change
Expand Up @@ -17966,8 +17966,8 @@
var str=event.unreal?'视为受到了':'受到了';
if(source) str+='来自<span class="bluetext">'+(source==player?'自己':get.translation(source))+'</span>的';
str+=num+'点';
if(event.faShu) str+=+'法术';
else str+=+'攻击';
if(event.faShu) str+='法术';
else str+='攻击';
str+='伤害';
game.log(player,str);
if(player.stat[player.stat.length-1].damaged==undefined){
Expand Down

0 comments on commit 9816d6e

Please sign in to comment.