* gnoemoe/mcp/gm-mcp-icecrew-serverinfo.c: actually set the world

charset to use (fixes #11)
This commit is contained in:
Jesse van den Kieboom 2006-09-29 12:59:28 +00:00
parent b09a51fdae
commit ccb8a88301
1 changed files with 6 additions and 0 deletions

View File

@ -362,6 +362,12 @@ void on_gm_mcp_icecrew_serverinfo_view_got_info(GmMcpIcecrewServerinfo *package,
gm_mcp_icecrew_serverinfo_view_set_visible(view, TRUE);
}
/* Set the charset */
if (package->priv->info.charset && *package->priv->info.charset != '\0')
gm_options_set(gm_world_options(GM_MCP_SESSION_WORLD(
GM_MCP_PACKAGE_SESSION(package))), "charset",
package->priv->info.charset);
// TODO: set logo for world menu item
}