mirror of
https://github.com/tbamud/tbamud.git
synced 2026-03-01 15:01:45 +01:00
Fixed a typo, only 4 warnings left. --Rumble
This commit is contained in:
@@ -3,12 +3,10 @@ help, find any bugs, or have ideas for improvement please stop by TBA at
|
|||||||
telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble
|
telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble
|
||||||
|
|
||||||
tbaMUD 3.56
|
tbaMUD 3.56
|
||||||
|
[May 08 2008] - Rumble
|
||||||
|
Cleaned up numerous warnings found by adding -Wextra -Wcast-qual -Wshadow -Wno-unused flags.
|
||||||
[May 05 2008] - Rumble
|
[May 05 2008] - Rumble
|
||||||
Changed command do_list_llog_entries to normal function, it was not being used as a command.
|
Changed command do_list_llog_entries to normal function, it was not being used as a command. (thanks Rhade)
|
||||||
Changed command do_list_llog_entries to normal function
|
|
||||||
Changed command do_list_llog_entries to normal function
|
|
||||||
Changed command do_list_llog_entries to normal function
|
|
||||||
Changed command do_list_llog_entries to normal function
|
|
||||||
Removed several useless if checks. (thanks Elanthis)
|
Removed several useless if checks. (thanks Elanthis)
|
||||||
Fixed zmalloc to work on 64 bit machines.
|
Fixed zmalloc to work on 64 bit machines.
|
||||||
[May 04 2008] - Rumble
|
[May 04 2008] - Rumble
|
||||||
|
|||||||
@@ -1214,7 +1214,7 @@ ACMD(do_detach)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!arg3 == NULL || *arg3)
|
if (arg3 == NULL || *arg3)
|
||||||
send_to_char(ch, "You must specify a trigger to remove.\r\n");
|
send_to_char(ch, "You must specify a trigger to remove.\r\n");
|
||||||
else
|
else
|
||||||
trigger = arg3;
|
trigger = arg3;
|
||||||
|
|||||||
Reference in New Issue
Block a user