koishi-plugin-ggcevo-game 1.4.35 → 1.4.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +2 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -4134,7 +4134,7 @@ function applyPassiveEffects(targetBoss, activeBosses, weaponName, damage, ignor
|
|
|
4134
4134
|
if (radiationResult) {
|
|
4135
4135
|
messages.push(...radiationResult.messages);
|
|
4136
4136
|
if (radiationResult.buffMultiplier) {
|
|
4137
|
-
totalBuffMultiplier += radiationResult.buffMultiplier
|
|
4137
|
+
totalBuffMultiplier += radiationResult.buffMultiplier;
|
|
4138
4138
|
}
|
|
4139
4139
|
if (radiationResult.targetUpdates) {
|
|
4140
4140
|
updateStatsByName(radiationResult.targetUpdates.name, radiationResult.targetUpdates.updates);
|
|
@@ -4145,7 +4145,7 @@ function applyPassiveEffects(targetBoss, activeBosses, weaponName, damage, ignor
|
|
|
4145
4145
|
if (coldResult) {
|
|
4146
4146
|
messages.push(...coldResult.messages);
|
|
4147
4147
|
if (coldResult.buffMultiplier) {
|
|
4148
|
-
totalBuffMultiplier += coldResult.buffMultiplier
|
|
4148
|
+
totalBuffMultiplier += coldResult.buffMultiplier;
|
|
4149
4149
|
}
|
|
4150
4150
|
if (coldResult.targetUpdates) {
|
|
4151
4151
|
updateStatsByName(coldResult.targetUpdates.name, coldResult.targetUpdates.updates);
|