diff --git a/doc/releases.txt b/doc/releases.txt index fe95a79..af3d2ee 100755 --- a/doc/releases.txt +++ b/doc/releases.txt @@ -10,6 +10,7 @@ to rec.games.mud.diku which originally announced CircleMUD as a publicly available MUD source code. tbaMUD Release history: +Version 2020 release: January, 2020 Version 2019 release: January, 2019 Version 2018 release: January, 2018 Version 3.68 release: February, 2017 diff --git a/lib/text/greetings b/lib/text/greetings index 7255787..a611fd8 100644 --- a/lib/text/greetings +++ b/lib/text/greetings @@ -1,5 +1,5 @@ T B A M U D - 2 0 1 9 + 2 0 2 0 Based on CircleMUD by Jeremy Elson and DikuMUD by Hans-Henrik Staerfeldt, Katja Nyboe, Tom Madsen, Michael Seifert, and Sebastian Hammer diff --git a/lib/world/obj/0.obj b/lib/world/obj/0.obj index b295708..25775cd 100644 --- a/lib/world/obj/0.obj +++ b/lib/world/obj/0.obj @@ -31,23 +31,6 @@ The email listing of the gods is pinned against the wall.~ 0 0 0 0 1 1 0 30 0 E -wizlist~ - Implementors - ~~~~~~~~~~~ - Rumble Welcor - Greater Gods - ~~~~~~~~~~~ - Detta Elaseth Elorien Fade Ferret Fyre Heiach Manivo - Radiax Random Relsqui - Gods - ~~~ - Aeon Alambil Amber Arcano Balm Demar Demortes Elixias - Emmett Exa Falstar Fharron Fizban Gatia Ilsensine Justo - Kyr Macros Meyekul Mick Minisham Mythran Neela Poiu - Santa Shamra Shimmer Silvanos Smaug Snowlock Talgard Taylor - Theophilus Tocamat Torpidai Treestump Tuskony Zizazat -~ -E emails listing~ HELP CONTACT ~ diff --git a/src/constants.c b/src/constants.c index ffc0e0a..5b5cd96 100644 --- a/src/constants.c +++ b/src/constants.c @@ -24,7 +24,7 @@ * @todo cpp_extern isn't needed here (or anywhere) as the extern reserved word * works correctly with C compilers (at least in my Experience) * Jeremy Osborne 1/28/2008 */ -cpp_extern const char *tbamud_version = "tbaMUD 2019"; +cpp_extern const char *tbamud_version = "tbaMUD 2020"; /* strings corresponding to ordinals/bitvectors in structs.h */ /* (Note: strings for class definitions in class.c instead of here) */ diff --git a/src/ibt.c b/src/ibt.c index e890715..3ead2c1 100755 --- a/src/ibt.c +++ b/src/ibt.c @@ -120,7 +120,7 @@ static IBT_DATA *read_ibt( char *filename, FILE *fp ) IBT_DATA *ibtData; char *word, *id_num=NULL, *dated=NULL; char buf[MAX_STRING_LENGTH]; - bool fMatch, flgCheck; + bool fMatch; char letter; do @@ -177,10 +177,6 @@ static IBT_DATA *read_ibt( char *filename, FILE *fp ) } break; - case 'F': - KEY("Flags", flgCheck, fread_flags(fp, ibtData->flags, IBT_ARRAY_MAX)); - break; - case 'I': TXT_KEY("IdNum", id_num, fread_line(fp)); break;