• R/O
  • HTTP
  • SSH
  • HTTPS

hengband: Commit

変愚蛮怒のメインリポジトリです


Commit MetaInfo

Revisiona3ea8612102c9b37678f49867011bf9ea3cbe222 (tree)
Time2003-09-16 23:59:37
Authornothere <nothere@0568...>
Commiternothere

Log Message

vanilla_town/lite_townでは "辺境の地" ではなく "街" から始まるので,
playrecordに "街に降り立った" と記録されるように修正.

Change Summary

Incremental Difference

--- a/src/dungeon.c
+++ b/src/dungeon.c
@@ -6888,12 +6888,6 @@ quit("
68886888 counts_write(2,0);
68896889 p_ptr->count = 0;
68906890
6891-#ifdef JP
6892- do_cmd_write_nikki(NIKKI_BUNSHOU, 0, "辺境の地に降り立った。");
6893-#else
6894- do_cmd_write_nikki(NIKKI_BUNSHOU, 0, "You are standing in the Outpost.");
6895-#endif
6896-
68976891 load = FALSE;
68986892
68996893 determine_bounty_uniques();
@@ -7000,6 +6994,19 @@ prt("
70006994 character_icky = FALSE;
70016995
70026996
6997+ if (new_game)
6998+ {
6999+ char buf[80];
7000+
7001+#ifdef JP
7002+ sprintf(buf, "%sに降り立った。", map_name());
7003+#else
7004+ sprintf(buf, "You are standing in the %s.", map_name());
7005+#endif
7006+ do_cmd_write_nikki(NIKKI_BUNSHOU, 0, buf);
7007+ }
7008+
7009+
70037010 /* Start game */
70047011 p_ptr->playing = TRUE;
70057012
Show on old repository browser