mv_maps[i] = gt;
mv_flags[i] = ReadByte();
- string mv_picpath = string_null;
+ string basetype = "";
if ( mv_flags[i] & GTV_CUSTOM )
{
name = gt;
mv_pk3[i] = strzone(name);
mv_desc[i] = strzone(ReadString());
- gt = strzone(ReadString());
- mv_picpath = strzone(ReadString());
- // "" or " " makes precache_pic crash, string_null doesn't
- if (strreplace(" ", "", mv_picpath) == "")
- {
- mv_picpath = string_null;
- }
+ basetype = strzone(ReadString());
}
else
{
mv_desc[i] = MapInfo_Type_Description(type);
}
- if(!mv_picpath || precache_pic(mv_picpath) == "")
+ string mv_picpath = sprintf("gfx/menu/%s/gametype_%s", autocvar_menu_skin, gt);
+ if(precache_pic(mv_picpath) == "")
{
- mv_picpath = sprintf("gfx/menu/%s/gametype_%s", autocvar_menu_skin, gt);
+ mv_picpath = strcat("gfx/menu/default/gametype_", gt);
if(precache_pic(mv_picpath) == "")
{
- mv_picpath = strcat("gfx/menu/default/gametype_", gt);
+ mv_picpath = sprintf("gfx/menu/%s/gametype_%s", autocvar_menu_skin, basetype);
+ if(precache_pic(mv_picpath) == "")
+ {
+ mv_picpath = strcat("gfx/menu/default/gametype_", basetype);
+ }
}
}
string pic = strzone(mv_picpath);
strcat("sv_vote_gametype_",type_name,"_description")));
WriteString(MSG_ENTITY, cvar_string(
strcat("sv_vote_gametype_",type_name,"_type")));
- WriteString(MSG_ENTITY, cvar_string(
- strcat("sv_vote_gametype_",type_name,"_icon")));
}
}
}