mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
- setup can now be run from CLI. Use "> php index.php --help" to start off - updated logging for use with CLI - added generators for client imagery (icons, maps, talents, ect) DBC: - parsed DBCs are now expected in the Aowow-DB, prefixed with dbc_* (they are joined with these tables, so its easier to have them here altogether) - setup/db_setup_3.zip may be reapplied (optionally) - alternatively aowow will now extract you own DBCs alongside your textures. They will be parsed and saved to DB, as needed. Misc: * HOST_URL and STATIC_URL will now be determined automaticly once and * then saved to ?_config (setup by CLI requires these to be set) Spell: * added glyph-symbol to infobox for glyph-related spells
8 lines
325 B
JavaScript
8 lines
325 B
JavaScript
var mn_profiles = /*setup:realmMenu*/;
|
|
|
|
var mn_guilds = $.extend(true,[],mn_profiles);
|
|
var mn_arenateams = $.extend(true,[],mn_profiles);
|
|
Menu.fixUrls(mn_profiles,"?profiles=",{useSimpleIdsAfter:1});
|
|
Menu.fixUrls(mn_guilds,"?guilds=",{useSimpleIdsAfter:1});
|
|
Menu.fixUrls(mn_arenateams,"?arena-teams=",{useSimpleIdsAfter:1});
|