X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fmutators%2Fgamemode_domination.qc;fp=qcsrc%2Fserver%2Fmutators%2Fgamemode_domination.qc;h=7b392a0663af09b0b65be533388aee3cb211b083;hb=737346fcfbe5912ff5de24c2f22c0dbd894429a6;hp=d10cedcd887b99697fc8c1b765b58aaf948db09e;hpb=d5ef5d560e367c971a2373080eceb6130ce3ed56;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/mutators/gamemode_domination.qc b/qcsrc/server/mutators/gamemode_domination.qc index d10cedcd8..7b392a066 100644 --- a/qcsrc/server/mutators/gamemode_domination.qc +++ b/qcsrc/server/mutators/gamemode_domination.qc @@ -597,7 +597,7 @@ void dom_DelayedInit() // Do this check with a delay so we can wait for teams to // if no teams are found, spawn defaults if(find(world, classname, "dom_team") == world || autocvar_g_domination_teams_override >= 2) { - print("No ""dom_team"" entities found on this map, creating them anyway.\n"); + LOG_INFO("No ""dom_team"" entities found on this map, creating them anyway.\n"); domination_teams = bound(2, ((autocvar_g_domination_teams_override < 2) ? autocvar_g_domination_default_teams : autocvar_g_domination_teams_override), 4); dom_spawnteams(domination_teams); } @@ -652,7 +652,7 @@ MUTATOR_DEFINITION(gamemode_domination) MUTATOR_ONREMOVE { - print("This is a game type and it cannot be removed at runtime."); + LOG_INFO("This is a game type and it cannot be removed at runtime."); return -1; }