PGF can not wrap

Right now, all tools (item data beginning with 03) and units (item data beginning with 0103) cannot be wrapped.

We have an explicit "return" in our code to prevent them from doing so. Why that is, I'm not sure. I'll look into it.

Code:
if (backup_item.item.data[0] == 0x03 || (backup_item.item.data[0] == 0x01 && backup_item.item.data[1] == 0x03)) // Items and units can't be wrapped.
               return;
 
Back
Top