• R/O
  • HTTP
  • SSH
  • HTTPS

hengbandosx: Commit

The master and develop branches track hengband.

OS X development happens on the macos-1-6-2, macos-2-2-1, and macos-develop branches.


Commit MetaInfo

Revision62e126eef62b77915acf5fabba82f1f5daadd33b (tree)
Time2021-01-21 09:47:30
AuthorEric Branlund <ebranlund@fast...>
CommiterEric Branlund

Log Message

Fix for English version so quest information is displayed when a quest is accepted from a building menu (i.e. the mayor's office or inn in Outpost).

Change Summary

Incremental Difference

--- a/src/floor/fixed-map-generator.c
+++ b/src/floor/fixed-map-generator.c
@@ -271,8 +271,13 @@ static int parse_qtw_Q(qtwg_type *qtwg_ptr, char **zz)
271271 if (qtwg_ptr->buf[0] != 'Q')
272272 return PARSE_CONTINUE;
273273
274+#ifdef JP
274275 if (qtwg_ptr->buf[2] == '$')
275276 return PARSE_ERROR_NONE;
277+#else
278+ if (qtwg_ptr->buf[2] != '$')
279+ return PARSE_ERROR_NONE;
280+#endif
276281
277282 int num = tokenize(qtwg_ptr->buf + _(2, 3), 33, zz, 0);
278283 if (num < 3)
Show on old repository browser