mirror of
https://github.com/seigler/bl3skills.com
synced 2025-07-27 01:36:12 +00:00
Add space after function names to correct linting error
This commit is contained in:
parent
3aeb83b8a7
commit
17df03e448
1 changed files with 7 additions and 7 deletions
|
@ -9,7 +9,7 @@ function percentTwoDecimals (rank, unit) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Matched Set Heat Per Shot
|
// Matched Set Heat Per Shot
|
||||||
function getMatchedSetHeatPerShot(rank) {
|
function getMatchedSetHeatPerShot (rank) {
|
||||||
switch (rank) {
|
switch (rank) {
|
||||||
case 1:
|
case 1:
|
||||||
return 2;
|
return 2;
|
||||||
|
@ -27,7 +27,7 @@ function getMatchedSetHeatPerShot(rank) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Scrappy Handling
|
// Scrappy Handling
|
||||||
function getScrappyHandling(rank) {
|
function getScrappyHandling (rank) {
|
||||||
switch (rank) {
|
switch (rank) {
|
||||||
case 1:
|
case 1:
|
||||||
return 10.7;
|
return 10.7;
|
||||||
|
@ -45,7 +45,7 @@ function getScrappyHandling(rank) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Scrappy Weapon Swap Speed
|
// Scrappy Weapon Swap Speed
|
||||||
function getScrappyWeaponSwapSpeed(rank) {
|
function getScrappyWeaponSwapSpeed (rank) {
|
||||||
switch (rank) {
|
switch (rank) {
|
||||||
case 1:
|
case 1:
|
||||||
return 16;
|
return 16;
|
||||||
|
@ -63,7 +63,7 @@ function getScrappyWeaponSwapSpeed(rank) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Scrappy Mode Switch Speed
|
// Scrappy Mode Switch Speed
|
||||||
function getScrappyModeSwitchSpeed(rank) {
|
function getScrappyModeSwitchSpeed (rank) {
|
||||||
switch (rank) {
|
switch (rank) {
|
||||||
case 1:
|
case 1:
|
||||||
return 16;
|
return 16;
|
||||||
|
@ -81,7 +81,7 @@ function getScrappyModeSwitchSpeed(rank) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Armored Infantry Damage Resistance
|
// Armored Infantry Damage Resistance
|
||||||
function getArmoredInfantryDamageResistance(rank) {
|
function getArmoredInfantryDamageResistance (rank) {
|
||||||
switch (rank) {
|
switch (rank) {
|
||||||
case 1:
|
case 1:
|
||||||
return 3;
|
return 3;
|
||||||
|
@ -99,7 +99,7 @@ function getArmoredInfantryDamageResistance(rank) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Vladof Ingenuity Shock Damage Resistance
|
// Vladof Ingenuity Shock Damage Resistance
|
||||||
function getVladofIngenuityShockDamageResistance(rank) {
|
function getVladofIngenuityShockDamageResistance (rank) {
|
||||||
switch (rank) {
|
switch (rank) {
|
||||||
case 1:
|
case 1:
|
||||||
return 15;
|
return 15;
|
||||||
|
@ -117,7 +117,7 @@ function getVladofIngenuityShockDamageResistance(rank) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Behind the Iron Curtain Shield Recharge Delay
|
// Behind the Iron Curtain Shield Recharge Delay
|
||||||
function getBehindTheIronCurtainShieldRechargeDelay(rank) {
|
function getBehindTheIronCurtainShieldRechargeDelay (rank) {
|
||||||
switch (rank) {
|
switch (rank) {
|
||||||
case 1:
|
case 1:
|
||||||
return 12;
|
return 12;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue