# HG changeset patch # User nemo # Date 1265645038 0 # Node ID 851313907bcb1cf8ff6b7d79e1a82544a6f5c4fc # Parent 82bfcc006afb8db3d2216f2fa7860ae3c4acf9f0 Decrease king buff from 150% bonus to 50% bonus, disable warning sound in placement mode diff -r 82bfcc006afb -r 851313907bcb hedgewars/uGears.pas --- a/hedgewars/uGears.pas Mon Feb 08 15:56:43 2010 +0000 +++ b/hedgewars/uGears.pas Mon Feb 08 16:03:58 2010 +0000 @@ -673,6 +673,7 @@ and not isInMultiShoot then begin if (TurnTimeLeft = 5000) + and (not PlacingHogs) and (CurrentHedgehog^.Gear <> nil) and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then PlaySound(sndHurry, CurrentTeam^.voicepack); diff -r 82bfcc006afb -r 851313907bcb hedgewars/uTeams.pas --- a/hedgewars/uTeams.pas Mon Feb 08 15:56:43 2010 +0000 +++ b/hedgewars/uTeams.pas Mon Feb 08 16:03:58 2010 +0000 @@ -354,7 +354,7 @@ begin Hedgehogs[0].King:= true; Hedgehogs[0].Hat:= 'crown'; - inc(Hedgehogs[0].Gear^.Health, hwRound(int2hwFloat(Hedgehogs[0].Gear^.Health)*_1_5)) + inc(Hedgehogs[0].Gear^.Health, hwRound(int2hwFloat(Hedgehogs[0].Gear^.Health)*_0_5)) end; for i:= 0 to cMaxHHIndex do if Hedgehogs[i].Gear <> nil then