Updated for 2020 release

This commit is contained in:
Rumble 2020-01-14 20:02:24 +01:00
parent 29f19f9ce5
commit 4214a3e31e
5 changed files with 4 additions and 24 deletions

View file

@ -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

View file

@ -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

View file

@ -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
~

View file

@ -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) */

View file

@ -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;