mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-08 00:44:21 +01:00
Updated changelog, version, compiler. -Rumble
This commit is contained in:
parent
95b0068920
commit
86542d6681
5 changed files with 39 additions and 4 deletions
|
|
@ -2,7 +2,7 @@
|
|||
# Clean-up provided by seqwith.
|
||||
|
||||
# C compiler to use
|
||||
CC = $(CC)
|
||||
CC = @CC@
|
||||
|
||||
# Any special flags you want to pass to the compiler
|
||||
MYFLAGS = @MYFLAGS@
|
||||
|
|
|
|||
|
|
@ -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, version 3.57";
|
||||
cpp_extern const char *tbamud_version = "tbaMUD 3.57";
|
||||
|
||||
/* strings corresponding to ordinals/bitvectors in structs.h */
|
||||
/* (Note: strings for class definitions in class.c instead of here) */
|
||||
|
|
|
|||
|
|
@ -192,7 +192,7 @@ int add_to_save_list(zone_vnum zone, int type)
|
|||
|
||||
rznum = real_zone(zone);
|
||||
if (rznum == NOWHERE || rznum > top_of_zone_table) {
|
||||
if (zone != AEDIT_PERMISSION || zone != HEDIT_PERMISSION) {
|
||||
if (zone != AEDIT_PERMISSION && zone != HEDIT_PERMISSION) {
|
||||
log("SYSERR: add_to_save_list: Invalid zone number passed. (%d => %d, 0-%d)", zone, rznum, top_of_zone_table);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue