mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-15 22:05:28 +01:00
Added new IBT system for Ideas, Bugs and Typos (thanks Frenze)
This commit is contained in:
parent
baf644d031
commit
71fbf510ba
14 changed files with 389 additions and 121 deletions
|
|
@ -156,6 +156,9 @@ const char *player_bits[] = {
|
|||
"INVST",
|
||||
"CRYO",
|
||||
"DEAD", /* You should never see this flag on a character in game. */
|
||||
"IBT_BUG",
|
||||
"IBT_IDEA",
|
||||
"IBT_TYPO",
|
||||
"UNUSED1",
|
||||
"UNUSED2",
|
||||
"UNUSED3",
|
||||
|
|
@ -296,6 +299,7 @@ const char *connected_types[] = {
|
|||
"Help edit",
|
||||
"Quest edit",
|
||||
"Preference edit",
|
||||
"IBT edit",
|
||||
"\n"
|
||||
};
|
||||
|
||||
|
|
@ -913,6 +917,14 @@ const char *history_types[] = {
|
|||
"auction",
|
||||
"\n"
|
||||
};
|
||||
|
||||
/** Flag names for Ideas, Bugs and Typos (defined in ibt.h) */
|
||||
const char *ibt_bits[] = {
|
||||
"Resolved",
|
||||
"Important",
|
||||
"InProgress",
|
||||
"\n"
|
||||
};
|
||||
/* --- End of constants arrays. --- */
|
||||
|
||||
/* Various arrays we count so we can check the world files. These
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue