Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Freeze Server After Unknown Groups Message #94

Open
BlackYuzia opened this issue Feb 29, 2020 · 3 comments
Open

[BUG] Freeze Server After Unknown Groups Message #94

BlackYuzia opened this issue Feb 29, 2020 · 3 comments

Comments

@BlackYuzia
Copy link
Contributor

Description

@CrazyHackGUT
Get freeze server after message like: Unknown group "Group_Name"

Examples

image

@BlackYuzia
Copy link
Contributor Author

BlackYuzia commented Feb 29, 2020

List of groups the same like list in addons/sourcemod/configs/materialadmin/admin/admins.cfg

@CrazyHackGUT
Copy link
Member

I/O or SM problems.
Plugin only writes in log when group not found.

else if (StrEqual(sKey, "group", false))
{
GroupId idGroup = FindAdmGroup(sValue);
if (idGroup == INVALID_GROUP_ID)
LogToFile(g_sLogAdmin, "Unknown group \"%s\"", sValue);
else
{
#if MADEBUG
LogToFile(g_sLogAdmin, "Admin %s group %s %d", g_sCurName, sValue, idGroup);
#endif
g_aGroupArray.Push(idGroup);
}
}

@BlackYuzia
Copy link
Contributor Author

@CrazyHackGUT but why groups is unknown?
(groups.cfg didn't empty)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants