mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-30 00:15:57 -04:00
The problem related to doSelfBuff always calling and thinking that the position secured buff wanted to be added all the time, which isn't the case. Right now I added a hasBuff check to doSelfBuff for the position secured buff which will remove the buff. I didn't want to flat out just remove a buff no matter what command was called because that would affect any buffs that wanted to be refreshed and not removed.
9 lines
152 B
Python
9 lines
152 B
Python
from resources.objects import Buff
|
|
import sys
|
|
|
|
def setup(core, actor, target, command):
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
return
|
|
|