refine cmdassist handling for grid bugs
when casting force bolt spell while engulfed go ahead and use the engulfers
name in the hit message rather than "it"
+a fog cloud shouldn't pummel you with debris
Platform- and/or Interface-Specific Fixes
}
break;
case AD_PHYS:
- You("are pummeled with debris!");
- exercise(A_STR, FALSE);
+ if (mtmp->data == &mons[PM_FOG_CLOUD])
+ You("are laden with moisture and can barely %s!",
+ !breathless(youmonst.data) ? "breathe" :
+ "stay conscious");
+ else {
+ You("are pummeled with debris!");
+ exercise(A_STR, FALSE);
+ }
break;
case AD_ACID:
if (Acid_resistance) {