mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
15 lines
No EOL
462 B
Python
15 lines
No EOL
462 B
Python
class AvatarHandle:
|
|
dclassName = 'AvatarHandle'
|
|
|
|
def getName(self):
|
|
return ''
|
|
|
|
def isOnline(self):
|
|
return False
|
|
|
|
def isUnderstandable(self):
|
|
return True
|
|
|
|
def setTalkWhisper(self, fromAV, fromAC, avatarName, chat, mods, flags):
|
|
newText, scrubbed = localAvatar.scrubTalk(chat, mods)
|
|
base.talkAssistant.receiveWhisperTalk(fromAV, avatarName, fromAC, None, self.avatarId, self.getName(), newText, scrubbed) |