Drop useless nstat value VIS
A player may execute a command when his player->nstat has all the bits in the command's c_permit. All commands require bit(0). All players always have it. Silly; get rid of it.
This commit is contained in:
parent
7aa71376a0
commit
364b208f28
3 changed files with 35 additions and 36 deletions
|
@ -42,10 +42,9 @@
|
|||
#include "types.h"
|
||||
|
||||
/* nstat values */
|
||||
#define VIS bit(0)
|
||||
#define SANCT (bit(1) | VIS)
|
||||
#define NORM (bit(2) | VIS)
|
||||
#define GOD (bit(3) | NORM | VIS)
|
||||
#define SANCT bit(1)
|
||||
#define NORM bit(2)
|
||||
#define GOD (bit(3) | NORM)
|
||||
#define EXEC bit(5)
|
||||
#define CAP bit(6)
|
||||
#define MONEY bit(7)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue