From 59b78528a970632d6a1e88f9c050c3b260f2ed52 Mon Sep 17 00:00:00 2001 From: Rosalie-A <61372066+Rosalie-A@users.noreply.github.com> Date: Thu, 30 Mar 2023 09:31:16 -0400 Subject: [PATCH] TLoZ: Fix description and off-by-one error (#1625) --- data/lua/TLoZ/TheLegendOfZeldaConnector.lua | 2 +- worlds/tloz/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/lua/TLoZ/TheLegendOfZeldaConnector.lua b/data/lua/TLoZ/TheLegendOfZeldaConnector.lua index aee4412bc0..ac33ed3cc4 100644 --- a/data/lua/TLoZ/TheLegendOfZeldaConnector.lua +++ b/data/lua/TLoZ/TheLegendOfZeldaConnector.lua @@ -621,7 +621,7 @@ function receive() -- Determine Message to send back memDomain.rom() - local playerName = uRange(0x1F, 0x10) + local playerName = uRange(0x1F, 0x11) playerName[0] = nil local retTable = {} retTable["playerName"] = playerName diff --git a/worlds/tloz/__init__.py b/worlds/tloz/__init__.py index 7cdf87c300..311215c157 100644 --- a/worlds/tloz/__init__.py +++ b/worlds/tloz/__init__.py @@ -36,7 +36,7 @@ class TLoZWeb(WebWorld): class TLoZWorld(World): """ The Legend of Zelda needs almost no introduction. Gather the eight fragments of the - Triforce of Courage, enter Death Mountain, defeat Ganon, and rescue Princess Zelda. + Triforce of Wisdom, enter Death Mountain, defeat Ganon, and rescue Princess Zelda. This randomizer shuffles all the items in the game around, leading to a new adventure every time. """