mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
14 lines
302 B
Python
14 lines
302 B
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
|
|
if actor.hasBuff('co_position_secured'):
|
|
core.buffService.removeBuffFromCreature(actor, actor.getBuffByName('co_position_secured'))
|
|
else:
|
|
core.buffService.addBuffToCreature(actor, 'co_position_secured')
|
|
|
|
return
|
|
|