did a debug session and fixed some errors

This commit is contained in:
Maverick Motherfucker 2011-06-03 22:00:46 -07:00
parent 273615f738
commit f5723ee834
3 changed files with 9 additions and 4 deletions

View file

@ -33,7 +33,7 @@ namespace TShockAPI
return parent;
}
public bool HasPermission(string permission)
public virtual bool HasPermission(string permission)
{
if (negatedPermissions.Contains(permission))
{
@ -62,7 +62,7 @@ namespace TShockAPI
{
}
new public bool HasPermission(string permission)
new public virtual bool HasPermission(string permission)
{
return true;
}