• R/O
  • SSH
  • HTTPS

junnethack: Commit


Commit MetaInfo

Revisión350 (tree)
Tiempo2010-11-14 18:32:03
Autorso-miya

Log Message

UnNetHack SVN版rev.694を適用した。
Fix: Grammar error when dying by touching a disintegrator (fixes ticket:61)
修正:粉砕の怪物に触れて死んだときの文法違いを修正
(日本語版には影響なし)

Cambiar Resumen

Diferencia incremental

--- junnethack/trunk/src/trap.c (revision 349)
+++ junnethack/trunk/src/trap.c (revision 350)
@@ -3019,7 +3019,7 @@
30193019 result = (youmonst.data->cwt);
30203020 weight_dmg(result);
30213021 result = min(6, result);
3022- killer_format = KILLED_BY_AN;
3022+ killer_format = KILLED_BY;
30233023 killer = str;
30243024 u.ugrave_arise = -3;
30253025 done(DISINTEGRATED);
--- junnethack/trunk/src/mhitu.c (revision 349)
+++ junnethack/trunk/src/mhitu.c (revision 350)
@@ -2205,7 +2205,7 @@
22052205 destroy_arm(destroyme);
22062206 dmg = 0;
22072207 } else if (touched) {
2208- int recip_damage = instadisintegrate(mtmp->data->mname);
2208+ int recip_damage = instadisintegrate(an(mtmp->data->mname));
22092209 if (recip_damage) {
22102210 dmg=0;
22112211 mtmp->mhp -= recip_damage;
Show on old repository browser