mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-30 00:15:57 -04:00
10 lines
205 B
Python
10 lines
205 B
Python
import sys
|
|
|
|
def addAbilities(core, actor, player):
|
|
actor.addAbility("expertise_sp_precision_2")
|
|
return
|
|
|
|
def removeAbilities(core, actor, player):
|
|
actor.removeAbility("expertise_sp_precision_2")
|
|
return
|