-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
bugSomething isn't workingSomething isn't working
Description
In both the NpcConfig and LocConfig, the writing of the opcodes 106&108(varbit/varp transformations) is slightly incorrect.
data.writeOpcode(if (transforms.last() == null) 118 else 106)
Should be inverted to
data.writeOpcode(if (transforms.last() != null) 118 else 106)
Edit: This also applies to HitMarkConfig, although it uses different opcodes for them.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working