Procházet zdrojové kódy

closes #1566

(cherry picked from commit bc1ab9596c)
tags/v0.8.0.3
Shaun před 3 roky
committed by Big Bad Waffle
rodič
revize
6fdcac6bf9
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  1. +5
    -0
      src/server/mods/class-necromancer/spells/spellSummonSkeleton.js

+ 5
- 0
src/server/mods/class-necromancer/spells/spellSummonSkeleton.js Zobrazit soubor

@@ -15,6 +15,8 @@ module.exports = {
killMinionsOnDeath: true,
minionsDieOnAggroClear: false,

maxSummon: 1,

minions: [],

name: 'Skeletal Minion',
@@ -32,6 +34,9 @@ module.exports = {
if (this.killMinionsBeforeSummon)
this.killMinions();

if (this.minions.length >= this.maxSummon)
return false;

let obj = this.obj;
let target = action.target;



Načítá se…
Zrušit
Uložit