summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Thronefall/I2.Loc/CallbackNotification.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Thronefall/I2.Loc/CallbackNotification.cs')
-rw-r--r--Thronefall_1_57/Thronefall/I2.Loc/CallbackNotification.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/Thronefall_1_57/Thronefall/I2.Loc/CallbackNotification.cs b/Thronefall_1_57/Thronefall/I2.Loc/CallbackNotification.cs
deleted file mode 100644
index 7060292..0000000
--- a/Thronefall_1_57/Thronefall/I2.Loc/CallbackNotification.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using UnityEngine;
-
-namespace I2.Loc;
-
-public class CallbackNotification : MonoBehaviour
-{
- public void OnModifyLocalization()
- {
- if (!string.IsNullOrEmpty(Localize.MainTranslation))
- {
- string newValue = TextTranslator.Translate("Color/Red");
- Localize.MainTranslation = Localize.MainTranslation.Replace("{PLAYER_COLOR}", newValue);
- }
- }
-}