Skip to content

Commit

Permalink
Adds a description to the World, and fixes a capitalization mistake o…
Browse files Browse the repository at this point in the history
…n a skill name
  • Loading branch information
digiholic committed Sep 11, 2024
1 parent 7621889 commit cd77c20
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion worlds/osrs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ class OSRSWeb(WebWorld):


class OSRSWorld(World):
"""
The best retro fantasy MMORPG on the planet. Old School is RuneScape but… older! This is the open world you know and love, but as it was in 2007.
The Randomizer takes the form of a Chunk-Restricted f2p Ironman that takes a brand new account up through defeating
the Green Dragon of Crandor and earning a spot in the fabled Champion's Guild!
"""

game = "Old School Runescape"
options_dataclass = OSRSOptions
options: OSRSOptions
Expand Down Expand Up @@ -635,7 +641,7 @@ def can_gold(state):
else:
return lambda state: can_tan(state) or (can_silver(state) and can_smelt_silver(state)) or \
(can_gold(state) and can_smelt_gold(state))
if skill.lower() == "Cooking":
if skill.lower() == "cooking":
if self.options.brutal_grinds or level < 15:
return lambda state: state.can_reach(RegionNames.Milk, "Region", self.player) or \
state.can_reach(RegionNames.Egg, "Region", self.player) or \
Expand Down

0 comments on commit cd77c20

Please sign in to comment.