mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-23 00:20:50 +03:00
Fix crafting issue
This commit is contained in:
@@ -24,7 +24,7 @@ class MeleeCrowbar : MeleeWeapon
|
||||
class Drop
|
||||
{
|
||||
text = $STR_ACTIONS_DROP;
|
||||
script = "spawn player_dropWeapon; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_dropWeapon;"; // r_action_count = r_action_count + 1;
|
||||
use[] = {"Crowbar_Swing"};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -30,7 +30,7 @@ class MeleeHatchet : MeleeWeapon
|
||||
class Drop
|
||||
{
|
||||
text = $STR_ACTIONS_DROP;
|
||||
script = "spawn player_dropWeapon; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_dropWeapon;"; // r_action_count = r_action_count + 1;
|
||||
use[] = {"Hatchet_Swing"};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -24,7 +24,7 @@ class MeleeMachete: MeleeWeapon
|
||||
class Drop
|
||||
{
|
||||
text = $STR_ACTIONS_DROP;
|
||||
script = "spawn player_dropWeapon; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_dropWeapon;"; // r_action_count = r_action_count + 1;
|
||||
use[] = {"Machete_Swing"};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -24,7 +24,7 @@ class MeleeSledge: MeleeWeapon
|
||||
class Drop
|
||||
{
|
||||
text = $STR_ACTIONS_DROP;
|
||||
script = "spawn player_dropWeapon; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_dropWeapon;"; // r_action_count = r_action_count + 1;
|
||||
use[] = {"Sledge_Swing"};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user