r_action_count needed for combine mags

This commit is contained in:
icomrade
2016-08-09 22:05:57 -04:00
parent c62e3147c8
commit 4fc2a3b7d6
2 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
#define COMBINE_MAG class CombineMag\
{\
text = $STR_MAG_COMBINE;\
script = "spawn player_combineMag;";\
script = "spawn player_combineMag; r_action_count = r_action_count + 1;";\
};
#include "9x18.hpp" //Makarov

View File

@@ -15,7 +15,7 @@ class HandRoadFlare : HandGrenade
class CombineMag
{
text = $STR_MAG_COMBINE;
script = "spawn player_combineMag;"; // r_action_count = r_action_count + 1;
script = "spawn player_combineMag; r_action_count = r_action_count + 1;";
};
};
};
@@ -37,7 +37,7 @@ class HandChemBlue : HandGrenade
class CombineMag
{
text = $STR_MAG_COMBINE;
script = "spawn player_combineMag;"; // r_action_count = r_action_count + 1;
script = "spawn player_combineMag; r_action_count = r_action_count + 1;";
};
};
};
@@ -59,7 +59,7 @@ class HandChemGreen : HandGrenade
class CombineMag
{
text = $STR_MAG_COMBINE;
script = "spawn player_combineMag;"; // r_action_count = r_action_count + 1;
script = "spawn player_combineMag; r_action_count = r_action_count + 1;";
};
};
};
@@ -81,7 +81,7 @@ class HandChemRed : HandGrenade
class CombineMag
{
text = $STR_MAG_COMBINE;
script = "spawn player_combineMag;"; // r_action_count = r_action_count + 1;
script = "spawn player_combineMag; r_action_count = r_action_count + 1;";
};
};
};