Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
higps committed Oct 2, 2023
1 parent 3ed063e commit b0c75c2
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions free_damage_rockets_soldier_ivory.sp
Original file line number Diff line number Diff line change
Expand Up @@ -294,17 +294,16 @@ stock GiveGiantPyro(client)
if(IsValidEntity(Weapon1))
{

TF2Attrib_SetByName(Weapon1, "dmg penalty vs players", 1.00);
TF2Attrib_SetByName(Weapon1, "dmg penalty vs players", 0.01);
TF2Attrib_SetByName(Weapon1, "maxammo primary increased", 2.5);
TF2Attrib_SetByName(Weapon1, "killstreak tier", 1.0);
TF2Attrib_SetByName(Weapon1, "faster reload rate", 3.0);
TF2Attrib_SetByName(Weapon1, "fire rate penalty", 1.15);
TF2Attrib_SetByName(Weapon1, "clip size upgrade atomic", 2.0);
// TF2Attrib_SetByName(Weapon1, "Projectile speed decreased", 0.75);
TF2Attrib_SetByName(Weapon1, "dmg penalty vs buildings", 0.15);
TF2Attrib_SetByName(Weapon1, "dmg penalty vs buildings", 0.01);
TF2CustAttr_SetString(Weapon1, "reload full clip at once", "1.0");
}

}
}

Expand Down Expand Up @@ -525,8 +524,8 @@ void SplitRocket(int rocket, bool converge)
// Set our launcher to the parent launcher
if (launcher > 0 && IsValidEntity(launcher))
{
if (airblast)
SetEntPropEnt(mirv, Prop_send, "m_hOriginalLauncher", launcher);
if (airblasted)
SetEntPropEnt(mirv, Prop_Send, "m_hOriginalLauncher", launcher);
else
SetEntPropEnt(mirv, Prop_Send, "m_hLauncher", launcher);
}
Expand Down

0 comments on commit b0c75c2

Please sign in to comment.