Open dschu012 opened 4 years ago
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
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