X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_game.pas;h=66c1edc5688a048a6506442636133df48414fdf6;hb=9c2247dcfd066a8ffed3137433a909e862a65640;hp=811148cf456bfb8fb4a54703ca79ebf0ad567361;hpb=f0c98dc86657bdc08f6049872f12b554e1654fa4;p=d2df-sdl.git diff --git a/src/game/g_game.pas b/src/game/g_game.pas index 811148c..66c1edc 100644 --- a/src/game/g_game.pas +++ b/src/game/g_game.pas @@ -2512,6 +2512,7 @@ begin glTranslatef(-x, -y, 0); + g_Map_BuildPVP(sX, sY, sX+sWidth-1, sY+sHeight-1); g_Map_DrawPanels(PANEL_BACK); g_Map_DrawPanels(PANEL_STEP); g_Items_Draw(); @@ -2533,6 +2534,7 @@ begin g_Monsters_DrawHealth(); g_Player_DrawHealth(); end; + g_Map_ResetPVP(); glPopMatrix(); end; @@ -2626,6 +2628,8 @@ begin glTranslatef(a, b+p.IncCam, 0); + g_Map_BuildPVP(sX, sY, sX+sWidth-1, sY+sHeight-1); + g_Map_DrawPanels(PANEL_BACK); g_Map_DrawPanels(PANEL_STEP); g_Items_Draw(); @@ -2671,6 +2675,7 @@ begin } glPopMatrix(); + g_Map_ResetPVP(); p.DrawPain(); p.DrawPickup(); @@ -6488,7 +6493,12 @@ begin // Debug mode: s := Find_Param_Value(pars, '--debug'); if (s <> '') then + begin g_Game_SetDebugMode(); + s := Find_Param_Value(pars, '--netdump'); + if (s <> '') then + NetDump := True; + end; // Connect when game loads ip := Find_Param_Value(pars, '-connect');