diff --git a/assets/Scripts/Models/nel_login_message.gd b/assets/Scripts/Models/nel_login_message.gd index 358f06e..fb087f9 100644 --- a/assets/Scripts/Models/nel_login_message.gd +++ b/assets/Scripts/Models/nel_login_message.gd @@ -21,11 +21,11 @@ class nel_login_message: if self._password != "": request_string += "&password=" + self._password; if self._clientApplication != "": - request_string += "&clientApplication=" + self._clientApplication + request_string += "&clientApplication=" + self._clientApplication; if self._cp != "": - request_string += "&cp=" + self._cp + request_string += "&cp=" + self._cp; if self._lg != "": - request_string += "&lg=" + self._lg + request_string += "&lg=" + self._lg; return request_string;