Added server error handling when setting /carbons preference

This commit is contained in:
James Booth
2015-03-09 23:07:51 +00:00
parent 2c19fad6d6
commit 3c1e8c4e15
5 changed files with 80 additions and 47 deletions

View File

@@ -177,6 +177,18 @@ handle_disco_info_error(const char * const from, const char * const error)
}
}
void
handle_enable_carbons_error(const char * const error)
{
cons_show_error("Server error enabling message carbons: %s", error);
}
void
handle_disable_carbons_error(const char * const error)
{
cons_show_error("Server error disabling message carbons: %s", error);
}
void
handle_room_info_error(const char * const room, const char * const error)
{