enefel 1.0.188 → 1.0.190
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/index.js +1 -2
- package/package.json +1 -1
- package/skill.js +1 -0
package/index.js
CHANGED
|
@@ -315,7 +315,6 @@ const getBlockAssistance = (
|
|
|
315
315
|
attackerPlayer,
|
|
316
316
|
defenderPlayer,
|
|
317
317
|
players,
|
|
318
|
-
isFoul = false,
|
|
319
318
|
isAttacker = false
|
|
320
319
|
) => {
|
|
321
320
|
const OtherPlayersThanInvolved = players.filter((player) => {
|
|
@@ -355,7 +354,7 @@ const getBlockAssistance = (
|
|
|
355
354
|
}
|
|
356
355
|
}
|
|
357
356
|
return (
|
|
358
|
-
|
|
357
|
+
hasGard ||
|
|
359
358
|
!OtherPlayersThanInvolved.some((player) => {
|
|
360
359
|
return (
|
|
361
360
|
// 4. Must have his tackle zones.
|
package/package.json
CHANGED