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:
Markus Armbruster 2012-02-18 13:55:58 +01:00
parent 7aa71376a0
commit 364b208f28
3 changed files with 35 additions and 36 deletions

View file

@ -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)