Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document stack size mishap #732

Merged
merged 5 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1281,6 +1281,9 @@
"not_enough_iotas.title": "Not Enough Iotas",
not_enough_iotas: "The action required more iotas than were on the stack.$(br2)Causes light gray sparks, and as many $(l:casting/influences)$(action)Garbages/$ as would be required to fill up the argument count will be pushed.",

"stack_size.title": "Too Many Iotas",
"stack_size": "I tried to cast a spell which exceeded the size limit of the stack.$(br2)Causes black sparks, and my spell to halt and entire stack will be replaced with a single $(l:casting/influences)$(action)Garbage/$.",
navarchus marked this conversation as resolved.
Show resolved Hide resolved

"incorrect_iota.title": "Incorrect Iota",
incorrect_iota: "The action that was executed expected an iota of a certain type for an argument, but it got something invalid. If multiple iotas are invalid, the error message will only tell me about the error deepest in the stack.$(br2)Causes dark gray sparks, and the invalid iota will be replaced with $(l:casting/influences)$(action)Garbage/$.",

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
"title": "hexcasting.page.mishaps.not_enough_iotas.title",
"text": "hexcasting.page.mishaps.not_enough_iotas"
},
{
"type": "patchouli:text",
"title": "hexcasting.page.mishaps.stack_size.title",
"text": "hexcasting.page.mishaps.stack_size"
},
{
"type": "patchouli:text",
"title": "hexcasting.page.mishaps.incorrect_iota.title",
Expand Down
Loading