Fix crafting issue

This commit is contained in:
icomrade
2016-08-07 14:36:40 -04:00
parent 0491b32c66
commit 2c4c75c67c
13 changed files with 67 additions and 66 deletions

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;
};
};
};