Fixed the specified sleep not being used on the sdl version.

This commit is contained in:
CodePanter 2016-12-06 20:55:03 +01:00
parent e204264680
commit b2209909bf

View file

@ -238,7 +238,7 @@ class PixelVloedClient(object):
""" """
self.sock.sendto(message, (self.ipaddress, self.port)) self.sock.sendto(message, (self.ipaddress, self.port))
if sleep: if sleep:
self.Sleep(duration=0.01) self.Sleep(duration=sleep)
@staticmethod @staticmethod
def DiscoverServers(returnfirst=False, timeout=5): def DiscoverServers(returnfirst=False, timeout=5):