mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-06 17:38:49 +01:00
Fixed a typo, only 4 warnings left. --Rumble
This commit is contained in:
parent
4f1403558a
commit
63c6808612
2 changed files with 4 additions and 6 deletions
|
|
@ -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
|
||||
|
||||
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
|
||||
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
|
||||
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, it was not being used as a command. (thanks Rhade)
|
||||
Removed several useless if checks. (thanks Elanthis)
|
||||
Fixed zmalloc to work on 64 bit machines.
|
||||
[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");
|
||||
else
|
||||
trigger = arg3;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue