From 383dd421bdcb926e68559cdbc2daa9b990cc835c Mon Sep 17 00:00:00 2001 From: Jacob Mandelson Date: Fri, 4 Nov 2022 09:12:08 -0700 Subject: [PATCH] Have ACCONLY3 show all three alternatives. --- help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help.cpp b/help.cpp index c1a88db4..04ce305a 100644 --- a/help.cpp +++ b/help.cpp @@ -701,7 +701,7 @@ void add_reqs(eLand l, string& s) { { int now = 0; string t = "("; for(eItem i: list) { if(t!="(") t += " | "; t += XLATN(iinf[i].name); now += items[i]; } t += ")"; s += XLAT("Treasure required: %1 x %2.\n", its(z), t); buteol(s, now, z); } #define ACCONLY(z) s += XLAT("Accessible only from %the1.\n", z); #define ACCONLY2(z,x) s += XLAT("Accessible only from %the1 or %the2.\n", z, x); - #define ACCONLY3(z,y,x) s += XLAT("Accessible only from %the1 or %the2.\n", z, y, x); + #define ACCONLY3(z,y,x) s += XLAT("Accessible only from %the1, %2, or %3.\n", z, y, x); #define ACCONLYF(z) s += XLAT("Accessible only from %the1 (until finished).\n", z); #include "content.cpp"