Skip to content

Commit

Permalink
Update Names.java
Browse files Browse the repository at this point in the history
  • Loading branch information
RacoonDog authored and Wide-Cat committed Nov 14, 2023
1 parent 150a9b5 commit 9af9822
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

package meteordevelopment.meteorclient.utils.misc;

import it.unimi.dsi.fastutil.objects.Reference2ObjectOpenHashMap;
import meteordevelopment.meteorclient.MeteorClient;
import meteordevelopment.meteorclient.events.game.ResourcePacksReloadedEvent;
import meteordevelopment.meteorclient.utils.PreInit;
Expand All @@ -28,12 +29,12 @@
import static meteordevelopment.meteorclient.MeteorClient.mc;

public class Names {
private static final Map<StatusEffect, String> statusEffectNames = new HashMap<>(16);
private static final Map<Item, String> itemNames = new HashMap<>(128);
private static final Map<Block, String> blockNames = new HashMap<>(128);
private static final Map<Enchantment, String> enchantmentNames = new HashMap<>(16);
private static final Map<EntityType<?>, String> entityTypeNames = new HashMap<>(64);
private static final Map<ParticleType<?>, String> particleTypesNames = new HashMap<>(64);
private static final Map<StatusEffect, String> statusEffectNames = new Reference2ObjectOpenHashMap<>(16);
private static final Map<Item, String> itemNames = new Reference2ObjectOpenHashMap<>(128);
private static final Map<Block, String> blockNames = new Reference2ObjectOpenHashMap<>(128);
private static final Map<Enchantment, String> enchantmentNames = new Reference2ObjectOpenHashMap<>(16);
private static final Map<EntityType<?>, String> entityTypeNames = new Reference2ObjectOpenHashMap<>(64);
private static final Map<ParticleType<?>, String> particleTypesNames = new Reference2ObjectOpenHashMap<>(64);
private static final Map<Identifier, String> soundNames = new HashMap<>(64);

@PreInit
Expand Down

0 comments on commit 9af9822

Please sign in to comment.