mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
TLS safety statement
This commit is contained in:
parent
25388538cf
commit
5b71c8da6c
1 changed files with 3 additions and 2 deletions
|
@ -97,10 +97,11 @@ class ToontownLoadingScreen:
|
|||
if gui:
|
||||
if base.localAvatarStyle:
|
||||
from toontown.toon import Toon
|
||||
emote = random.choice(self.emotes).values()
|
||||
emote = random.choice(self.emotes)
|
||||
self.toon = Toon.Toon()
|
||||
self.toon.setDNA(base.localAvatarStyle)
|
||||
self.toon.pose(*emote)
|
||||
try: self.toon.pose(*emote.values())
|
||||
except: self.toon.pose(emote['emote'], emote['frame'])
|
||||
self.toon.getGeomNode().setDepthWrite(1)
|
||||
self.toon.getGeomNode().setDepthTest(1)
|
||||
self.toon.setHpr(205, 0, 0)
|
||||
|
|
Loading…
Reference in a new issue