mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-01 02:16:15 -04:00
9 lines
200 B
Python
9 lines
200 B
Python
import sys
|
|
|
|
def addAbilities(core, actor, player):
|
|
actor.addAbility("expertise_bh_agility_1")
|
|
return
|
|
|
|
def removeAbilities(core, actor, player):
|
|
actor.removeAbility("expertise_bh_agility_1")
|
|
return |