diff --git a/engine/nsmservercontrol.py b/engine/nsmservercontrol.py index 1ccd536..ca25f70 100644 --- a/engine/nsmservercontrol.py +++ b/engine/nsmservercontrol.py @@ -909,7 +909,7 @@ class NsmServerControl(object): self.sock.sendto(msg.build(), self.nsmOSCUrl) def clientShow(self, clientId:str): - """Hides the client. Works only if client announced itself with this feature""" + """Shows the client. Works only if client announced itself with this feature""" msg = _OutgoingMessage("/nsm/gui/client/show_optional_gui") msg.add_arg(clientId) #s:clientId self.sock.sendto(msg.build(), self.nsmOSCUrl)