shavit-core.sp - syntax

This commit is contained in:
olivia 2025-07-10 09:24:13 -07:00 committed by GitHub
parent c93ce9f0d2
commit 6ca602df73
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2193,8 +2193,8 @@ public int SemiNative_PrintToChat(int client, int formatParam)
{
//code to split string, need to find first space before message limit
//TODO: handle if there is a color code applied at iCut that != sText and apply it to the start of sBuffer2
char sBuffer1 = new char[maxLen+1];
char sBuffer2 = new char[maxLen+1];
char[] sBuffer1 = new char[maxLen+1];
char[] sBuffer2 = new char[maxLen+1];
strcopy(sBuffer1, sizeof(sBuffer1), sBuffer);
int iCut = FindCharInString(sBuffer1, " ", true);