mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
(BugFix) Officer group buff's will now check ranges (BugFix) Group buffs applied when a player joins a group as long as they are within range (BugFix) /inspire will now take a command string for target (BugFix) /imagedesign will now take a command string for target
11 lines
206 B
Python
11 lines
206 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
if target is None:
|
|
target = actor
|
|
core.buffService.addGroupBuff(target, 'of_buff_def_5', actor)
|
|
return
|
|
|