Fix name of tail-skipping action

It is possible to skip tails while some are already present. The wiki
had the old name when this was added to the solver, but it has since
been corrected.
This commit is contained in:
Jeremy Saklad 2021-09-11 17:05:36 -05:00
parent 482333b263
commit f60b8b6f6f
Signed by: Jeremy Saklad
GPG Key ID: 9CA2149583EDBF84
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ class Appendage(Enum):
# This sets Skeleton: Tails Needed to 0 and is implemented separately # This sets Skeleton: Tails Needed to 0 and is implemented separately
SKIP_TAILS = Action( SKIP_TAILS = Action(
"Decide your Tailless Animal needs no tail", "Decide your (Skeleton Type) needs no tail",
cost = Cost.ACTION.value cost = Cost.ACTION.value
) )