From: Patric Mueller Date: Fri, 23 Oct 2020 09:02:59 +0000 (+0200) Subject: Tossed upwards objects got two times half physical damage reduction X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1cc26106bf35667783520e8b57a08dd499e220c4;p=nethack Tossed upwards objects got two times half physical damage reduction --- diff --git a/doc/fixes37.0 b/doc/fixes37.0 index eef41adc9..c72819118 100644 --- a/doc/fixes37.0 +++ b/doc/fixes37.0 @@ -279,6 +279,7 @@ when reporting that hero can't repair a chest's broken lock with key/pick/card suggests that you might be able to do so with a blessed or cursed one pre-populate teleport destination prompt with travel destination ghosts cannot be renamed +tossed upwards objects got two times half physical damage reduction Fixes to 3.7.0-x Problems that Were Exposed Via git Repository diff --git a/src/dothrow.c b/src/dothrow.c index 18e3a77d1..6719dc9d8 100644 --- a/src/dothrow.c +++ b/src/dothrow.c @@ -1071,7 +1071,7 @@ boolean hitsroof; } hitfloor(obj, TRUE); g.thrownobj = 0; - losehp(Maybe_Half_Phys(dmg), "falling object", KILLED_BY_AN); + losehp(dmg, "falling object", KILLED_BY_AN); } return TRUE; }