From 45d5abd622dbc5c93d502886e06c445a2d880e42 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sat, 12 Jul 2025 15:08:55 -0700 Subject: [PATCH] Remove game crashing on encryption issue --- Assets/Scripts/SensitiveInfo.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Assets/Scripts/SensitiveInfo.cs b/Assets/Scripts/SensitiveInfo.cs index 755a844..2e3136c 100644 --- a/Assets/Scripts/SensitiveInfo.cs +++ b/Assets/Scripts/SensitiveInfo.cs @@ -39,7 +39,6 @@ public class SensitiveInfo } catch { - Application.Quit(); return "-997"; //the server returns this if theres an issue with encryption/decryption so the client will too ig } } @@ -72,7 +71,6 @@ public class SensitiveInfo } catch { - Application.Quit(); return null; } } @@ -104,7 +102,6 @@ public class SensitiveInfo } catch { - Application.Quit(); return "-997"; //the server returns this if theres an issue with encryption/decryption so the client will too ig } } @@ -135,7 +132,6 @@ public class SensitiveInfo } catch { - Application.Quit(); return null; } }