mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
13 lines
301 B
Python
13 lines
301 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
if actor.getSkillMod('expertise_buff_duration_line_me_enhance'):
|
|
buff.setDuration(buff.getDuration()+(actor.getSkillModBase('expertise_buff_duration_line_me_enhance')))
|
|
return
|
|
|
|
def add(core, actor, buff):
|
|
return
|
|
|
|
def remove(core, actor, buff):
|
|
return
|
|
|