TLoZ: Fix description and off-by-one error (#1625)
This commit is contained in:
parent
cd4fd18706
commit
59b78528a9
|
@ -621,7 +621,7 @@ function receive()
|
||||||
|
|
||||||
-- Determine Message to send back
|
-- Determine Message to send back
|
||||||
memDomain.rom()
|
memDomain.rom()
|
||||||
local playerName = uRange(0x1F, 0x10)
|
local playerName = uRange(0x1F, 0x11)
|
||||||
playerName[0] = nil
|
playerName[0] = nil
|
||||||
local retTable = {}
|
local retTable = {}
|
||||||
retTable["playerName"] = playerName
|
retTable["playerName"] = playerName
|
||||||
|
|
|
@ -36,7 +36,7 @@ class TLoZWeb(WebWorld):
|
||||||
class TLoZWorld(World):
|
class TLoZWorld(World):
|
||||||
"""
|
"""
|
||||||
The Legend of Zelda needs almost no introduction. Gather the eight fragments of the
|
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
|
This randomizer shuffles all the items in the game around, leading to a new adventure
|
||||||
every time.
|
every time.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue