diff options
author | James Booth <boothj5@gmail.com> | 2014-10-23 23:33:12 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-10-23 23:33:12 +0100 |
commit | c014bb34b3d9e839306c29b68dcbe7ed194aea9e (patch) | |
tree | d5405b9552aaa0bf4ab3e32f7576f4a001129e42 /src/command | |
parent | 84765969e0cab6da881dfecc6dee7de7a038f80c (diff) | |
download | profani-tty-c014bb34b3d9e839306c29b68dcbe7ed194aea9e.tar.gz |
Renamed room destroy function
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index fa0a423e..670bc1a5 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -2383,7 +2383,7 @@ cmd_room(gchar **args, struct cmd_help_t help) } if (g_strcmp0(args[0], "destroy") == 0) { - iq_destroy_instant_room(room); + iq_destroy_room(room); return TRUE; } |