Skip to content

Commit

Permalink
task: Add On and Al, and mark Og and VM as retired
Browse files Browse the repository at this point in the history
The previous attempt at adding these failed because `On` is interpreted
as `true` in yaml 1.1 and earlier. It seems we can't upgrade all of
Sequell's dependencies to support yaml 1.2, where these alternative
interpretations are removed. Namely because Perl's YAML::XS doesn't seem
to have yaml 1.2 support. So this commit simply encloses the On key in
quotes.

This reverts commit 61b73b0.
  • Loading branch information
gammafunk committed Jan 10, 2024
1 parent 61b73b0 commit a0e6801
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions config/crawl-data.yml
Expand Up @@ -415,7 +415,10 @@ species:
My: Mayflytaur*
Na: Naga
OM: Ogre-Mage*
Og: Ogre
Og: Ogre*
# Note: `On' must be quoted here because otherwise it's interpreted as `true'
# in yaml 1.1 and earlier.
'On': Oni
Op: Octopode
Pa: Palentonga*
Pl: Plutonian*
Expand Down Expand Up @@ -459,6 +462,7 @@ species-enum-map-override: {}
classes:
AE: Air Elementalist
AK: Abyssal Knight*
Al: Alchemist
AM: Arcane Marksman*
Ar: Artificer
As: Assassin*
Expand Down Expand Up @@ -492,7 +496,7 @@ classes:
Su: Summoner
Th: Thief*
Tm: Transmuter*
VM: Venom Mage
VM: Venom Mage*
Wn: Wanderer
Wr: Warper
Wz: Wizard*
Expand Down

0 comments on commit a0e6801

Please sign in to comment.