Windows Food tooltip wider than expected because of index bug

selph

Greenhorn
There's a bug in `IClickableMenu.drawHoverText`, specifically in the code block where it iterates over `buffIconsToDisplay` to find the widest string to resize the box to: the iterator stops at 12 instead of 11, and as a result tries to reference the non-existent ItemHover_Buff12 string, causing it to return the path itself (which is very wide). See attached image on what the current Spicy Eel tooltip looks like (left), and what it should look like when the iterator stops at 11 (right)
comparison.png
 
Top