Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
matsu1213 committed Jun 20, 2024
1 parent 6f8a5d4 commit e84995a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/azisaba/leoncsaddon/WeaponConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ public void init(){
int reduceStartTick = configuration.getInt(key + ".reduceStartTick",0);
int reduceEndTick = configuration.getInt(key + ".reduceEndTick",0);
double reduceDamage = configuration.getDouble(key + ".reduceDamage",0);
double projectileSizeXZ = configuration.getDouble(key + ".projectileSize.xz",0);
double projectileSizeY = configuration.getDouble(key + ".projectileSize.y",0);
double projectileSizeXZ = configuration.getDouble(key + ".projectileSize.xz",1.5);
double projectileSizeY = configuration.getDouble(key + ".projectileSize.y",1.5);

weaponsMap.put(key,new WeaponConfigData(key, type, isMain, damage, headshotBonusDamage, criticalBonusDamage, guardMult, walkSpeed, canSprint, reduceStartTick, reduceEndTick, reduceDamage, projectileSizeXZ, projectileSizeY));

Expand Down

0 comments on commit e84995a

Please sign in to comment.