diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/constants.conf | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/db/constants.conf b/db/constants.conf index 94afab25..1a3c07cd 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -4826,10 +4826,11 @@ constants_db: { AUTUMN: 3 comment__: "speechflags" - S_FIRST_BLANK_LINE: 1 - S_LAST_BLANK_LINE: 2 - S_LAST_NEXT: 4 - S_NO_NPC_NAME: 8 + S_FIRST_BLANK_LINE: 0b00000001 + S_LAST_BLANK_LINE: 0b00000010 + S_LAST_NEXT: 0b00000100 + S_NO_NPC_NAME: 0b00001000 + S_LAST_CLOSE: 0b00010000 comment__: "npcs" NPC_KNIVES: 100 |