Changed: Fixes for client local/debug mode

--HG--
branch : develop
feature/pipeline-tools
Nimetu 6 years ago
parent 8b69d673be
commit a7b931353c

@ -4238,7 +4238,7 @@ public:
string fileName = getParam(sParams, "music"); string fileName = getParam(sParams, "music");
// don't play if db is in init stage // don't play if db is in init stage
if (IngameDbMngr.initInProgress()) return; if (!ClientCfg.Local && IngameDbMngr.initInProgress()) return;
if(SoundMngr) if(SoundMngr)
SoundMngr->playEventMusic(fileName, xFade, loop); SoundMngr->playEventMusic(fileName, xFade, loop);
@ -4260,7 +4260,7 @@ public:
string fileName= getParam(sParams, "music"); string fileName= getParam(sParams, "music");
// don't play if db is in init stage // don't play if db is in init stage
if (IngameDbMngr.initInProgress()) return; if (!ClientCfg.Local && IngameDbMngr.initInProgress()) return;
if(SoundMngr) if(SoundMngr)
SoundMngr->stopEventMusic(fileName, xFade); SoundMngr->stopEventMusic(fileName, xFade);

@ -54,7 +54,7 @@ REGISTER_ACTION_HANDLER( CHandlerBrowseHome, "browse_home");
static string getWebAuthKey() static string getWebAuthKey()
{ {
if(!UserEntity) return ""; if(!UserEntity || !NetMngr.getLoginCookie().isValid()) return "";
// authkey = <sharid><name><cid><cookie> // authkey = <sharid><name><cid><cookie>
uint32 cid = NetMngr.getLoginCookie().getUserId() * 16 + PlayerSelectedSlot; uint32 cid = NetMngr.getLoginCookie().getUserId() * 16 + PlayerSelectedSlot;
@ -304,6 +304,8 @@ CGroupHTMLAuth::~CGroupHTMLAuth()
void CGroupHTMLAuth::addHTTPGetParams (string &url, bool trustedDomain) void CGroupHTMLAuth::addHTTPGetParams (string &url, bool trustedDomain)
{ {
if(!UserEntity || !NetMngr.getLoginCookie().isValid()) return;
addWebIGParams(url, trustedDomain); addWebIGParams(url, trustedDomain);
} }
@ -311,7 +313,7 @@ void CGroupHTMLAuth::addHTTPGetParams (string &url, bool trustedDomain)
void CGroupHTMLAuth::addHTTPPostParams (SFormFields &formfields, bool trustedDomain) void CGroupHTMLAuth::addHTTPPostParams (SFormFields &formfields, bool trustedDomain)
{ {
if(!UserEntity) return; if(!UserEntity || !NetMngr.getLoginCookie().isValid()) return;
uint32 cid = NetMngr.getLoginCookie().getUserId() * 16 + PlayerSelectedSlot; uint32 cid = NetMngr.getLoginCookie().getUserId() * 16 + PlayerSelectedSlot;
formfields.add("shardid", toString(CharacterHomeSessionId)); formfields.add("shardid", toString(CharacterHomeSessionId));

Loading…
Cancel
Save