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