This commit is contained in:
eaglercraft 2024-03-02 22:18:18 -08:00
commit 573420e1b8
613 changed files with 5708 additions and 4445 deletions

View file

@ -110,8 +110,9 @@ public class HoverEvent {
}
static {
for (HoverEvent.Action hoverevent$action : values()) {
nameMapping.put(hoverevent$action.getCanonicalName(), hoverevent$action);
HoverEvent.Action[] types = values();
for (int i = 0; i < types.length; ++i) {
nameMapping.put(types[i].getCanonicalName(), types[i]);
}
}