Update max projectile damage to 1,175.

This commit is contained in:
Lucas Nicodemus 2015-07-10 01:07:14 -06:00
parent 0e00ffc311
commit 7cc463d886
3 changed files with 7 additions and 6 deletions

View file

@ -290,10 +290,10 @@ namespace TShockAPI
public bool AllowLoginAnyUsername = true;
[Description("The maximum damage a player/npc can inflict.")]
public int MaxDamage = 175;
public int MaxDamage = 1175;
[Description("The maximum damage a projectile can inflict.")]
public int MaxProjDamage = 175;
public int MaxProjDamage = 1175;
[Description("Kicks a user if set to true, if they inflict more damage then the max damage.")]
public bool KickOnDamageThresholdBroken = false;