mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 08:47:54 +00:00
sry loud
This commit is contained in:
parent
55d06848e6
commit
1d8f4bea81
1 changed files with 5 additions and 1 deletions
|
@ -221,7 +221,11 @@ class Nametag:
|
|||
self.chatTextNode.setText(chatText)
|
||||
|
||||
def getChatText(self):
|
||||
return self.chatTextNode.getText()
|
||||
try:
|
||||
text = self.chatTextNode.getText()
|
||||
return text
|
||||
except AttributeError:
|
||||
return None
|
||||
|
||||
def setWordWrap(self, wordWrap):
|
||||
if wordWrap is None:
|
||||
|
|
Loading…
Reference in a new issue