Files
NGECore2/scripts/commands/removefriend.py
T
2013-08-24 17:05:18 +02:00

11 lines
226 B
Python

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