-
Notifications
You must be signed in to change notification settings - Fork 133
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
Amoxliatl #6237
Conversation
"members": true, | ||
"combatLevel": 263, | ||
"hitpoints": 520, | ||
"attackType": ["magic"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The attackType
field should be a string, not an array. Please change "attackType": ["magic"]
to "attackType": "magic"
. This issue is also present in other entries in the file.
Deploying oldschoolbot with Cloudflare Pages
|
.add('Fire rune', [10, 40], 26) | ||
.add('Fire rune', [40, 60], 14) | ||
.add('Chaos rune', [40, 60], 11) | ||
.add('Nature rune', [50, 10], 4) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The quantity range for 'Nature rune' seems incorrect. It is currently [50, 10], which should be in ascending order. Please correct it to [10, 50].
.add('Nature rune', [50, 10], 4) | |
.add('Nature rune', [10, 50], 4) |
Description:
Changes:
Other checks: