Skip to content

Commit

Permalink
Fix typo in "Thermal Goggles". Fixes #380
Browse files Browse the repository at this point in the history
  • Loading branch information
ikkentim authored Oct 24, 2021
1 parent 68facc9 commit c88d53f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SampSharp.GameMode/SAMP/Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,11 @@ public static string GetWeaponName(Weapon weapon)
case Weapon.NightVisionGoggles:
return "Night Vision Goggles";
case Weapon.ThermalGoggles:
return "Therml Goggles";
return "Thermal Goggles";
default:
ServerInternal.Instance.GetWeaponName((int) weapon, out var retstr, 32);
return string.IsNullOrEmpty(retstr) ? weapon.ToString() : retstr;
}
}
}
}
}

0 comments on commit c88d53f

Please sign in to comment.