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