First time posting...
Im connecting successfully to universe, using uopy.connect.
with the session i can run a command on the server, however every subsequent call to the server calling cmd.run() (please see below) results in the following error:
UOError: Error [39207] : Error occurred on server. Possible client-side licensing failure.
Note: this only happens the second time, also calling uopy.connect takes an awfully long time to return, is this normal?
My code:
session = uopy.connect(**config)
cmd = uopy.Command(cpmmandtext)
cmd.run()
print(cmd.response)
