]> granicus.if.org Git - nethack/commitdiff
Tossed upwards objects got two times half physical damage reduction
authorPatric Mueller <bhaak@gmx.net>
Fri, 23 Oct 2020 09:02:59 +0000 (11:02 +0200)
committerPatric Mueller <bhaak@gmx.net>
Fri, 23 Oct 2020 09:04:29 +0000 (11:04 +0200)
doc/fixes37.0
src/dothrow.c

index eef41adc9cccf256e0881d2106adb0df4e5e3a96..c728191188590f89f007ef8d6e3ef47bdbe1b3d8 100644 (file)
@@ -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
index 18e3a77d1ec7f6187c8a13e26f48e3102f1269bb..6719dc9d8a9fce16992460bf878120f2049b931f 100644 (file)
@@ -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;
 }