We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, the last 3 parameters of ATK_HIT_ABS are displayed incorrectly (most notable occurrences are in throws).
ATK_HIT_ABS
Here's an example of it:
ATK_HIT_ABS(FIGHTER_ATTACK_ABSOLUTE_KIND_THROW, hash40("throw"), FIGHTER_STATUS_THROW_WORK_INT_TARGET_OBJECT, FIGHTER_STATUS_THROW_WORK_INT_TARGET_HIT_GROUP, FIGHTER_STATUS_THROW_WORK_INT_TARGET_HIT_NO)
The last 3 arguments should be passed through WorkModule::get_int64 like so:
WorkModule::get_int64
ATK_HIT_ABS(FIGHTER_ATTACK_ABSOLUTE_KIND_THROW, hash40("throw"), WorkModule::get_int64(module_accessor, FIGHTER_STATUS_THROW_WORK_INT_TARGET_OBJECT), WorkModule::get_int64(module_accessor, FIGHTER_STATUS_THROW_WORK_INT_TARGET_HIT_GROUP), WorkModule::get_int64(module_accessor, FIGHTER_STATUS_THROW_WORK_INT_TARGET_HIT_NO))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the last 3 parameters of
ATK_HIT_ABS
are displayed incorrectly (most notable occurrences are in throws).Here's an example of it:
The last 3 arguments should be passed through
WorkModule::get_int64
like so:The text was updated successfully, but these errors were encountered: