X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fplayerstats.qc;h=2c4a355e0a8c00a58a7c14649dde91a32b744fd4;hb=6c4f62990980e74d4a0963b7179c7c964f535398;hp=813f966be05a568155fe40e9af9ff1373089dcf3;hpb=a6a3b0cebd6928e3678ee4e97de4093f1b61c58b;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/playerstats.qc b/qcsrc/common/playerstats.qc index 813f966be..2c4a355e0 100644 --- a/qcsrc/common/playerstats.qc +++ b/qcsrc/common/playerstats.qc @@ -211,7 +211,6 @@ void PlayerStats_GameReport_Init() // initiated before InitGameplayMode so that { if(autocvar_g_playerstats_gamereport_uri == "") { return; } - PS_GR_OUT_DB = -1; PS_GR_OUT_DB = db_create(); if(PS_GR_OUT_DB >= 0) @@ -427,10 +426,7 @@ void PlayerStats_PlayerBasic(entity joiningplayer, float newrequest) { // create the database if it doesn't already exist if(PS_B_IN_DB < 0) - { - PS_B_IN_DB = -1; PS_B_IN_DB = db_create(); - } // now request the information uri = strcat(uri, "/player/", uri_escape(uri_escape(joiningplayer.crypto_idfp)), "/elo.txt"); @@ -635,10 +631,7 @@ void PlayerStats_PlayerDetail(void) { // create the database if it doesn't already exist if(PS_D_IN_DB < 0) - { - PS_D_IN_DB = -1; PS_D_IN_DB = db_create(); - } //uri = strcat(uri, "/player/", uri_escape(crypto_getmyidfp(0))); dprint("Retrieving playerstats from URL: ", autocvar_g_playerstats_playerdetail_uri, "\n"); @@ -987,7 +980,6 @@ void PlayerInfo_ready(entity fh, entity p, float status) void PlayerInfo_Init() { - playerinfo_db = -1; playerinfo_db = db_create(); }