mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-28 23:15:53 -04:00
9 lines
172 B
Python
9 lines
172 B
Python
import sys
|
|
|
|
def add(core, actor, skillMod, divisor):
|
|
actor.setAction(actor.getAction() + skillMod.getBase())
|
|
return
|
|
|
|
def deduct(core, actor, skillMod, divisor):
|
|
return
|
|
|