Skip to content

Commit

Permalink
Fix exorbitant damage from chainsaws and sledge hammers
Browse files Browse the repository at this point in the history
Reduces the damage from chainsaws and sledge hammers to prevent the very fast destruction of cinder and metal buildings.

This is the only good way to prevent the high damage on cinder and metal. Eventhandlers for damage are not a good idea and can affect the server performace if to many are set.
  • Loading branch information
AirwavesMan committed Sep 16, 2020
1 parent 6a30f5a commit 118dbfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SQF/dayz_code/Configs/cfgAmmo.hpp
Expand Up @@ -845,7 +845,7 @@ class CfgAmmo

//Epoch Melee
class Chainsaw_Swing_Ammo : Melee {
hit = 9;
hit = 2;
simulation = "shotBullet";
minRange = 1;
minRangeProbab = 0.8;
Expand All @@ -860,7 +860,7 @@ class CfgAmmo
soundEngine[] = {"", db-80, 4};
};
class Sledge_Swing_Ammo : Melee {
hit = 12;
hit = 4;
simulation = "shotBullet";
minRange = 1;
minRangeProbab = 0.8;
Expand Down

0 comments on commit 118dbfa

Please sign in to comment.