We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f5a85 commit d3d1d60Copy full SHA for d3d1d60
wurst/objediting/AbilityObjEditing.wurst
@@ -29,9 +29,9 @@ public interface TooltipGenerator
29
/** Makes an ability able to be cast by a dummy */
30
public function AbilityDefinition.setDummyAbility() returns AbilityDefinition
31
this..setHeroAbility(false)
32
- ..setManaCost(1, 0)
33
- ..setCooldown(1, 0)
34
- ..setCastRange(1, 99999)
+ ..presetManaCost(lvl -> 0)
+ ..presetCooldown(lvl -> 0)
+ ..presetCastRange(lvl -> 99999)
35
..setCheckDependencies(false)
36
return this
37
0 commit comments