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
item.MagicalNameIDs should be a fixed length array of 6. if you have a rare w/ 3 prefixes and 1 suffix you'd have an array of size 4 similar to
item.MagicalNameIDs
[143, 436, 583, 370]
as it is right now there is no way to distinguish between what is a prefix and what is a suffix. ideally you'd want something along the lines of.
[143, 436, 583, null, 370, null]
https://github.com/nokka/d2s/blob/master/d2s.go#L954
The text was updated successfully, but these errors were encountered:
address issue nokka#10 and nokka#11.
6d182d5
* add item version * make prefix/suffixes a fixed length array * add simple unit test
No branches or pull requests
item.MagicalNameIDs
should be a fixed length array of 6. if you have a rare w/ 3 prefixes and 1 suffix you'd have an array of size 4 similar to[143, 436, 583, 370]
as it is right now there is no way to distinguish between what is a prefix and what is a suffix. ideally you'd want something along the lines of.
[143, 436, 583, null, 370, null]
https://github.com/nokka/d2s/blob/master/d2s.go#L954
The text was updated successfully, but these errors were encountered: