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.
Files changed (3) hide show
  1. package/index.js +1 -2
  2. package/package.json +1 -1
  3. 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
- (!isFoul && hasGard) ||
357
+ hasGard ||
359
358
  !OtherPlayersThanInvolved.some((player) => {
360
359
  return (
361
360
  // 4. Must have his tackle zones.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "enefel",
3
- "version": "1.0.188",
3
+ "version": "1.0.190",
4
4
  "main": "index.js",
5
5
  "author": "Manest",
6
6
  "license": "MIT",
package/skill.js CHANGED
@@ -351,6 +351,7 @@ function getNoTurnoverSkill() {
351
351
  SKILL_NAMES.UNCHANNELLED_FURY,
352
352
  SKILL_NAMES.DUMP_OFF,
353
353
  SKILL_NAMES.HYPNOTIC_GAZE,
354
+ SKILL_NAMES.FOUL_APPEARANCE,
354
355
  ];
355
356
  }
356
357