From 512c172547cab75a6b13c3fe17ec63c525ecf10a Mon Sep 17 00:00:00 2001 From: Arneth Date: Thu, 19 Sep 2024 19:51:46 -0400 Subject: [PATCH] name input fix --- Assets/Scripts/Assembly-CSharp/Qoo/Game/KsExec.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Assets/Scripts/Assembly-CSharp/Qoo/Game/KsExec.cs b/Assets/Scripts/Assembly-CSharp/Qoo/Game/KsExec.cs index 45fe76b89..a721abf62 100644 --- a/Assets/Scripts/Assembly-CSharp/Qoo/Game/KsExec.cs +++ b/Assets/Scripts/Assembly-CSharp/Qoo/Game/KsExec.cs @@ -107,10 +107,8 @@ namespace Qoo.Game { if (KsExec.confirmResult) { - GameData.SetParamString("firstname", NameInputKeyboard.InputText, KsExec.editName); - GameData.SetParamString("familyname", NameInputKeyboard.InputTextLastName, KsExec.editLastName); - //GameData.SetParamString("firstname", string.Empty, KsExec.editName); - //GameData.SetParamString("familyname", string.Empty, KsExec.editLastName); + GameData.SetParamString("firstname", string.Empty, KsExec.editName); + GameData.SetParamString("familyname", string.Empty, KsExec.editLastName); NameInputKeyboard.Close(); return true; }