Files
NGECore2/scripts/commands/removefriend.py
T

11 lines
223 B
Python

import sys
def setup():
return
def run(core, actor, target, commandString):
ghost = actor.getSlottedObject('ghost')
chatSvc = core.chatService
chatSvc.removeFriend(ghost, commandString)
return