mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-24 20:22:33 -06:00
fixed loud
This commit is contained in:
parent
3668fa58b0
commit
d67de6ca4e
1 changed files with 5 additions and 1 deletions
|
@ -215,7 +215,11 @@ class Nametag:
|
|||
self.textNode.setText(text)
|
||||
|
||||
def getText(self):
|
||||
return self.textNode.getText()
|
||||
try:
|
||||
text = self.textNode.getText()
|
||||
return text
|
||||
except AttributeError:
|
||||
return None
|
||||
|
||||
def setChatText(self, chatText):
|
||||
self.chatTextNode.setText(chatText)
|
||||
|
|
Loading…
Reference in a new issue