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