Make KOPS unconditional.
This commit is contained in:
@@ -423,7 +423,6 @@ typedef unsigned char uchar;
|
||||
#define WALLIFIED_MAZE /* Fancy mazes - Jean-Christophe Collet */
|
||||
#define REINCARNATION /* Special Rogue-like levels */
|
||||
/* monsters & objects */
|
||||
#define KOPS /* Keystone Kops by Scott R. Turner */
|
||||
#define SEDUCE /* Succubi/incubi seduction, by KAA, suggested by IM */
|
||||
#define TOURIST /* Tourist players with cameras and Hawaiian shirts */
|
||||
/* I/O */
|
||||
|
||||
@@ -29,9 +29,7 @@
|
||||
#define MS_IMITATE 19 /* imitates others (leocrotta) */
|
||||
#define MS_ORC MS_GRUNT /* intelligent brutes */
|
||||
#define MS_HUMANOID 20 /* generic traveling companion */
|
||||
#ifdef KOPS
|
||||
#define MS_ARREST 21 /* "Stop in the name of the law!" (Kops) */
|
||||
#endif
|
||||
#define MS_SOLDIER 22 /* army and watchmen expressions */
|
||||
#define MS_GUARD 23 /* "Please drop that gold and follow me." */
|
||||
#define MS_DJINNI 24 /* "Thank you for freeing me!" */
|
||||
|
||||
@@ -312,12 +312,8 @@ struct obj {
|
||||
(obj)->otyp == TOUCHSTONE)
|
||||
|
||||
/* misc */
|
||||
#ifdef KOPS
|
||||
#define is_flimsy(otmp) (objects[(otmp)->otyp].oc_material <= LEATHER || \
|
||||
(otmp)->otyp == RUBBER_HOSE)
|
||||
#else
|
||||
#define is_flimsy(otmp) (objects[(otmp)->otyp].oc_material <= LEATHER)
|
||||
#endif
|
||||
|
||||
/* helpers, simple enough to be macros */
|
||||
#define is_plural(o) ((o)->quan > 1 || \
|
||||
|
||||
Reference in New Issue
Block a user