We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9c49cec + 93a8e6e commit 9a1793fCopy full SHA for 9a1793f
src/ChatPatches.cs
@@ -36,6 +36,12 @@ public static void Postfix(ChatController __instance)
36
__instance.freeChatField.textArea.characterLimit = int.MaxValue;
37
}
38
39
+ // Set chat cooldown to 2.1s opposed to orginal 3s
40
+ if (__instance.timeSinceLastMessage < 0.9f)
41
+ {
42
+ __instance.timeSinceLastMessage = 0.9f;
43
+ }
44
+
45
else if (AUnlocker.PatchChat.Value)
46
{
47
//__instance.freeChatField.textArea.AllowPaste = true;
0 commit comments