Skip to content
Snippets Groups Projects
Commit e58ec3ab authored by gozzarda's avatar gozzarda
Browse files

Enable Admins to Open Door

parent 83d33ade
Branches
No related merge requests found
...@@ -100,7 +100,7 @@ int Door_CanDispense(int User, int Item) ...@@ -100,7 +100,7 @@ int Door_CanDispense(int User, int Item)
// Sanity please // Sanity please
if( Item != 0 ) return -1; if( Item != 0 ) return -1;
if( !(Bank_GetFlags(User) & USER_FLAG_DOORGROUP) ) if( !(Bank_GetFlags(User) & (USER_FLAG_DOORGROUP|USER_FLAG_ADMIN)) )
{ {
#if DEBUG #if DEBUG
printf("Door_CanDispense: User %i not in door\n", User); printf("Door_CanDispense: User %i not in door\n", User);
...@@ -128,7 +128,7 @@ int Door_DoDispense(int User, int Item) ...@@ -128,7 +128,7 @@ int Door_DoDispense(int User, int Item)
if( Item != 0 ) return -1; if( Item != 0 ) return -1;
// Check if user is in door // Check if user is in door
if( !(Bank_GetFlags(User) & USER_FLAG_DOORGROUP) ) if( !(Bank_GetFlags(User) & (USER_FLAG_DOORGROUP|USER_FLAG_ADMIN)) )
{ {
#if DEBUG #if DEBUG
printf("Door_CanDispense: User %i not in door\n", User); printf("Door_CanDispense: User %i not in door\n", User);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment