mirror of
https://github.com/tbamud/tbamud.git
synced 2026-04-05 20:07:19 +02:00
Rename thief class to rogue
This commit is contained in:
parent
bf52d5332e
commit
d0708b4472
8 changed files with 39 additions and 39 deletions
|
|
@ -914,9 +914,9 @@ do \
|
|||
/** 1 if ch is cleric class, 0 if not. */
|
||||
#define IS_CLERIC(ch) (!IS_NPC(ch) && \
|
||||
(GET_CLASS(ch) == CLASS_CLERIC))
|
||||
/** 1 if ch is thief class, 0 if not. */
|
||||
#define IS_THIEF(ch) (!IS_NPC(ch) && \
|
||||
(GET_CLASS(ch) == CLASS_THIEF))
|
||||
/** 1 if ch is rogue class, 0 if not. */
|
||||
#define IS_ROGUE(ch) (!IS_NPC(ch) && \
|
||||
(GET_CLASS(ch) == CLASS_ROGUE))
|
||||
/** 1 if ch is fighter class, 0 if not. */
|
||||
#define IS_FIGHTER(ch) (!IS_NPC(ch) && \
|
||||
(GET_CLASS(ch) == CLASS_FIGHTER))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue