Merge branch 'master' of github.com:ucc/OpenDispense2
authorJohn Hodge <[email protected]>
Thu, 16 Apr 2015 06:18:37 +0000 (14:18 +0800)
committerJohn Hodge <[email protected]>
Thu, 16 Apr 2015 06:18:37 +0000 (14:18 +0800)
src/server/handler_door.c

index 78e0b2a..1db954f 100644 (file)
@@ -101,7 +101,7 @@ int Door_CanDispense(int User, int Item)
        // Sanity please
        if( Item != 0 ) return -1;
        
-       if( !(Bank_GetFlags(User) & USER_FLAG_DOORGROUP) )
+       if( !(Bank_GetFlags(User) & (USER_FLAG_DOORGROUP|USER_FLAG_ADMIN)) )
        {
                #if DEBUG
                printf("Door_CanDispense: User %i not in door\n", User);
@@ -129,7 +129,7 @@ int Door_DoDispense(int User, int Item)
        if( Item != 0 ) return -1;
        
        // 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
                printf("Door_CanDispense: User %i not in door\n", User);

UCC git Repository :: git.ucc.asn.au