From 465636a1ed0fe206f87580fe5fc0f048d36225e6 Mon Sep 17 00:00:00 2001 From: Stanislas Dolcini Date: Thu, 4 Oct 2018 17:26:32 +0200 Subject: [PATCH] OCD commit --- assets/Scripts/Models/nel_login_message.gd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;