We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4921fe6 commit 00867e0Copy full SHA for 00867e0
1 file changed
RandomizerCore/CustomTexts.cs
@@ -463,9 +463,10 @@ public static List<Text> GenerateTexts(
463
//Generate replacements for "COME BACK WHEN YOU ARE READY" that is displayed when you don't have
464
//enough magic containers and container requirements are on.
465
texts[17] = new Text(NOT_ENOUGH_CONTAINERS_TEXT.Sample(nonhashRNG)!);
466
- //Old kasuto guy has a different vanilla not enough containers message
467
- texts[95] = new Text(NOT_ENOUGH_CONTAINERS_TEXT.Sample(nonhashRNG)!);
468
}
+ //Old kasuto guy has a different vanilla not enough containers message
+ //It should be the same, even when community text is off;
469
+ texts[95] = texts[17];
470
471
if (props.TownNameHints)
472
{
0 commit comments