return null;
    
    // We will have to do this dynamically, unfortunately
    try {
      Class<?> clazz = nmsObject.getClass();
      MethodAccessor accessor = getBukkitEntityCache.get(clazz);
      
      if (accessor == null) {
        MethodAccessor created = Accessors.getMethodAccessor(clazz, "getBukkitEntity");
        accessor = getBukkitEntityCache.putIfAbsent(clazz, created);
        
        // We won the race
        if (accessor == null) {
          accessor = created;