Fixes SQL not working correctly. and saving

This commit is contained in:
Twitchy 2011-07-12 22:47:36 +12:00
parent 6def12b517
commit eda5cfc10d
4 changed files with 20 additions and 30 deletions

View file

@ -74,6 +74,9 @@ namespace TShockAPI.DB
public bool GroupExists(string group)
{
if (group == "superadmin")
return true;
try
{
using (var com = database.CreateCommand())