close #285
This commit is contained in:
parent
253e6a252b
commit
c56d7cd03a
1 changed files with 6 additions and 6 deletions
|
@ -914,12 +914,12 @@
|
|||
"hexcasting.page.logic.and": "Returns True if both arguments are true; otherwise returns False.",
|
||||
"hexcasting.page.logic.xor": "Returns True if exactly one of the arguments is true; otherwise returns False.",
|
||||
"hexcasting.page.logic.if": "If the first argument is True, keeps the second and discards the third; otherwise discards the second and keeps the third.",
|
||||
"hexcasting.page.logic.equals": "If the first argument equals the second (within a small tolerance), return 1. Otherwise, return 0.",
|
||||
"hexcasting.page.logic.not_equals": "If the first argument does not equal the second (outside a small tolerance), return 1. Otherwise, return 0.",
|
||||
"hexcasting.page.logic.greater": "If the first argument is greater than the second, return 1. Otherwise, return 0.",
|
||||
"hexcasting.page.logic.less": "If the first argument is less than the second, return 1. Otherwise, return 0.",
|
||||
"hexcasting.page.logic.greater_eq": "If the first argument is greater than or equal to the second, return 1. Otherwise, return 0.",
|
||||
"hexcasting.page.logic.less_eq": "If the first argument is less than or equal to the second, return 1. Otherwise, return 0.",
|
||||
"hexcasting.page.logic.equals": "If the first argument equals the second (within a small tolerance), return True. Otherwise, return False.",
|
||||
"hexcasting.page.logic.not_equals": "If the first argument does not equal the second (outside a small tolerance), return True. Otherwise, return False.",
|
||||
"hexcasting.page.logic.greater": "If the first argument is greater than the second, return True. Otherwise, return False.",
|
||||
"hexcasting.page.logic.less": "If the first argument is less than the second, return True. Otherwise, return False.",
|
||||
"hexcasting.page.logic.greater_eq": "If the first argument is greater than or equal to the second, return True. Otherwise, return False.",
|
||||
"hexcasting.page.logic.less_eq": "If the first argument is less than or equal to the second, return True. Otherwise, return False.",
|
||||
|
||||
"hexcasting.entry.entities": "Entities",
|
||||
"hexcasting.page.entities.get_entity": "Transform the position on the stack into the entity at that location (or $(l:casting/influences)$(thing)Null/$ if there isn't one).",
|
||||
|
|
Loading…
Reference in a new issue