Correction texture diamond shard ore
This commit is contained in:
@@ -0,0 +1,158 @@
|
|||||||
|
# Guide d'Intégration de la Configuration
|
||||||
|
|
||||||
|
## 📋 Vue d'Ensemble
|
||||||
|
|
||||||
|
Le système de configuration est maintenant en place. Voici ce qui a été implémenté :
|
||||||
|
|
||||||
|
## ✅ Déjà Fonctionnel
|
||||||
|
|
||||||
|
### 1. Stats des Outils (Shard Diamond)
|
||||||
|
Les outils utilisent **déjà** les valeurs de configuration !
|
||||||
|
|
||||||
|
Fichier : `src/main/java/net/mcreator/customoregen/item/Sharddiamond*Item.java`
|
||||||
|
|
||||||
|
```java
|
||||||
|
// La durabilité est lue depuis la configuration
|
||||||
|
public int getUses() {
|
||||||
|
return ModConfigs.TOOL_STATS.shardDiamondPickaxeDurability.get();
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
**Pour tester :** Modifiez `pickaxeDurability` dans `config/custom_ore_gen-common.toml` après le premier lancement.
|
||||||
|
|
||||||
|
### 2. Procédure de Drops Configurables
|
||||||
|
Une procédure Java a été créée pour gérer les drops configurables.
|
||||||
|
|
||||||
|
Fichier : `src/main/java/net/mcreator/customoregen/procedures/ConfigurableOreDropsProcedure.java`
|
||||||
|
|
||||||
|
## 🔧 Intégration Restante (Requiert MCreator)
|
||||||
|
|
||||||
|
Pour que les drops de minerais utilisent la configuration, vous devez lier la procédure aux blocs via MCreator.
|
||||||
|
|
||||||
|
### Étape 1 : Ouvrir MCreator
|
||||||
|
|
||||||
|
Ouvrez votre workspace MCreator pour ce mod.
|
||||||
|
|
||||||
|
### Étape 2 : Créer une Procédure
|
||||||
|
|
||||||
|
1. Allez dans **Workspace procedures**
|
||||||
|
2. Cliquez sur **Add new procedure**
|
||||||
|
3. Nommez-la : `configurable_ore_drops`
|
||||||
|
4. Dans la procédure, ajoutez un appel à la procédure Java :
|
||||||
|
|
||||||
|
**Dans MCreator, utilisez les blocs suivants :**
|
||||||
|
- **Event trigger**: `On block destroyed by player/explosion`
|
||||||
|
- **Condition**: `Has ore data` → vérifiez si c'est un de vos minerais
|
||||||
|
- **Action**: Call custom procedure → `ConfigurableOreDropsProcedure`
|
||||||
|
|
||||||
|
### Étape 3 : Lier la Procédure aux Blocs
|
||||||
|
|
||||||
|
Pour chaque minerai que vous voulez rendre configurable :
|
||||||
|
|
||||||
|
1. Ouvrez le bloc dans MCreator (ex: `Shard Diamond Ore`)
|
||||||
|
2. Allez dans l'onglet **Triggers**
|
||||||
|
3. Pour **"When block destroyed by player"** ou **"After block destroyed by explosion"**
|
||||||
|
4. Ajoutez la procédure avec le paramètre `oreType` :
|
||||||
|
- Pour Shard Diamond Ore : `oreType = "shard_diamond"`
|
||||||
|
- Pour Concentrated Diamond Ore : `oreType = "concentrated_diamond"`
|
||||||
|
- Pour Ash Coal Ore : `oreType = "ash_coal"`
|
||||||
|
- Etc.
|
||||||
|
|
||||||
|
### Étape 4 : Rebuild le Mod
|
||||||
|
|
||||||
|
Après avoir modifié les blocs dans MCreator :
|
||||||
|
1. Cliquez sur **Build** → **Build mod**
|
||||||
|
2. Le code sera régénéré avec vos liaisons
|
||||||
|
|
||||||
|
## 📊 Configuration des Features Toggles
|
||||||
|
|
||||||
|
Les options d'activation/désactivation des fonctionnalités sont définies dans `ModConfigs.java` :
|
||||||
|
|
||||||
|
```java
|
||||||
|
enableShardDiamondTools = true
|
||||||
|
enableShardDiamondOre = true
|
||||||
|
enableConcentratedOres = true
|
||||||
|
etc.
|
||||||
|
```
|
||||||
|
|
||||||
|
Pour implémenter ces toggles, vous devrez ajouter des conditions dans :
|
||||||
|
- L'enregistrement des blocs (pour la génération)
|
||||||
|
- L'enregistrement des items (pour les outils)
|
||||||
|
- Les recettes de craft
|
||||||
|
|
||||||
|
### Exemple d'Implémentation des Toggles
|
||||||
|
|
||||||
|
Dans `CustomOreGenModBlocks.java` ou votre classe d'enregistrement :
|
||||||
|
|
||||||
|
```java
|
||||||
|
// Au lieu d'enregistrer directement :
|
||||||
|
// SHARDDIAMONDBLOCKORE.register(bus);
|
||||||
|
|
||||||
|
// Faites :
|
||||||
|
if (ModConfigs.FEATURES.enableShardDiamondOre.get()) {
|
||||||
|
SHARDDIAMONDBLOCKORE.register(bus);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🎯 Ce Que Vous Poulez Faire Maintenant
|
||||||
|
|
||||||
|
### Option 1 : Utiliser MCreator pour Intégrer les Drops
|
||||||
|
- Ouvrez MCreator
|
||||||
|
- Liez la procédure `ConfigurableOreDropsProcedure` à vos blocs
|
||||||
|
- Rebuild
|
||||||
|
|
||||||
|
### Option 2 : Modifier Directement les Blocs Java
|
||||||
|
Pour chaque bloc de minerai, modifiez la méthode `onDestroy` pour appeler la procédure.
|
||||||
|
|
||||||
|
Exemple pour `SharddiamondblockoreBlock.java` :
|
||||||
|
|
||||||
|
```java
|
||||||
|
@Override
|
||||||
|
public void onDestroy(Level world, BlockPos pos, BlockState state) {
|
||||||
|
Entity entity = // obtenir l'entité qui mine
|
||||||
|
ConfigurableOreDropsProcedure.execute(
|
||||||
|
world,
|
||||||
|
pos.getX(),
|
||||||
|
pos.getY(),
|
||||||
|
pos.getZ(),
|
||||||
|
entity,
|
||||||
|
"shard_diamond"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Option 3 : Continuer avec les Loot Tables Actuelles
|
||||||
|
Les loot tables JSON actuelles continueront de fonctionner. La configuration des drops n'affectera le jeu que si vous intégrez la procédure.
|
||||||
|
|
||||||
|
## 📝 Résumé des Fichiers Modifiés
|
||||||
|
|
||||||
|
| Fichier | Statut | Description |
|
||||||
|
|---------|--------|-------------|
|
||||||
|
| `ModConfigs.java` | ✅ Créé | Classe de configuration principale |
|
||||||
|
| `ConfigHelper.java` | ✅ Créé | Classe utilitaire pour accéder aux configs |
|
||||||
|
| `ConfigurableOreDropsProcedure.java` | ✅ Créé | Procédure pour les drops configurables |
|
||||||
|
| `SharddiamondpickaxeItem.java` | ✅ Modifié | Utilise les configs |
|
||||||
|
| `SharddiamondshovelItem.java` | ✅ Modifié | Utilise les configs |
|
||||||
|
| `SharddiamondaxeItem.java` | ✅ Modifié | Utilise les configs (et bug de réparation corrigé) |
|
||||||
|
| `CustomOreGenMod.java` | ✅ Modifié | Enregistre la configuration |
|
||||||
|
| `custom_ore_gen-common.toml` | ✅ Créé | Fichier de config par défaut |
|
||||||
|
|
||||||
|
## 🚀 Test
|
||||||
|
|
||||||
|
Pour tester que les outils utilisent bien les configs :
|
||||||
|
|
||||||
|
1. Lancez le mod une fois pour générer le fichier de config
|
||||||
|
2. Fermez le jeu
|
||||||
|
3. Ouvrez `config/custom_ore_gen-common.toml`
|
||||||
|
4. Modifiez `pickaxeDurability = 500`
|
||||||
|
5. Relancez le jeu
|
||||||
|
6. Craft une pioche en Shard Diamond
|
||||||
|
7. Vérifiez qu'elle a bien 500 de durabilité (F3 + H pour voir les stats avancées)
|
||||||
|
|
||||||
|
## 💡 Besoin d'Aide ?
|
||||||
|
|
||||||
|
Si vous avez besoin d'aide pour intégrer la configuration via MCreator, n'hésitez pas à demander !
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Note** : Le système de configuration est en place et fonctionne pour les outils. Pour les drops et la génération des minerais, l'intégration dépend de comment vous voulez procéder (via MCreator ou modification directe du code).
|
||||||
@@ -0,0 +1,230 @@
|
|||||||
|
# Custom Ore Gem Mod
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Custom Ore Gem est un mod Minecraft développé avec MCreator pour Forge 1.20.1. Ce mod enrichit l'expérience minière du jeu en ajoutant une variété de nouveaux minerais, de nouveaux objets et d'outils personnalisés, offrant aux joueurs plus de possibilités et une progression plus intéressante.
|
||||||
|
|
||||||
|
## Informations Techniques
|
||||||
|
|
||||||
|
- **Version de Minecraft** : 1.20.1
|
||||||
|
- **Mod Loader** : Forge (version 47.3.0)
|
||||||
|
- **Version de Java** : Java 17
|
||||||
|
- **Mod ID** : `custom_ore_gen`
|
||||||
|
- **Outil de développement** : MCreator
|
||||||
|
|
||||||
|
## Fonctionnalités Principales
|
||||||
|
|
||||||
|
### Nouveaux Minerais (23 au total)
|
||||||
|
|
||||||
|
Le mod ajoute plusieurs variantes de minerais personnalisés :
|
||||||
|
|
||||||
|
#### Variantes de Diamant
|
||||||
|
- **Shard Diamond Ore** : Un minerai de diamant qui droppe des éclats de diamant (tous biomes)
|
||||||
|
- **Deepslate Shard Diamond Ore** : Version deepslate du minerai d'éclats de diamant
|
||||||
|
- **Concentrated Diamond Ore** : Un minerai de diamant plus concentré (zones froides uniquement)
|
||||||
|
|
||||||
|
#### Variantes d'Or
|
||||||
|
- **Impure Gold Ore** (normal & deepslate) : Un minerai d'or impur
|
||||||
|
- **Pure Golden Ore** (normal & deepslate) : Un minerai d'or pur de haute qualité (zones chaudes uniquement)
|
||||||
|
|
||||||
|
#### Variantes de Charbon
|
||||||
|
- **Ash Coal Ore** : Un type de charbon spécial
|
||||||
|
- **Concentrated Coal Ore** : Charbon plus concentré (biomes tempérés uniquement)
|
||||||
|
|
||||||
|
#### Variantes de Fer
|
||||||
|
- **Impure Iron Ore** (normal & deepslate) : Un minerai de fer impur (biomes tempérés)
|
||||||
|
|
||||||
|
#### Variantes d'Émeraude
|
||||||
|
- **High Emerald Ore** : Émeraude de haute qualité (montagnes uniquement)
|
||||||
|
- **Lower Emerald Ore** : Émeraude de basse qualité (biomes très rares uniquement)
|
||||||
|
|
||||||
|
#### Minerais Additionnels
|
||||||
|
- Iron Ore (normal & deepslate)
|
||||||
|
- Redstone Ore (normal & deepslate)
|
||||||
|
- Lapis Lazuli Ore (normal & deepslate)
|
||||||
|
- Copper Ore (variantes haute et basse)
|
||||||
|
|
||||||
|
### Nouveaux Objets
|
||||||
|
|
||||||
|
#### Diamond Shard (Éclat de Diamant)
|
||||||
|
- **Description** : Un éclat de diamant avec des étincelles
|
||||||
|
- **Utilisation** :
|
||||||
|
- Peut être crafté en diamant complet (9 éclats = 1 diamant)
|
||||||
|
- Permet de créer des outils en éclats de diamant
|
||||||
|
- **Rareté** : Plus commun que le diamant complet, mais nécessite d'être accumulé
|
||||||
|
|
||||||
|
#### Autres Objets
|
||||||
|
- **Ash Coal** : Charbon spécial dropé par l'Ash Coal Ore
|
||||||
|
|
||||||
|
### Outils en Diamond Shard
|
||||||
|
|
||||||
|
Le mod introduit une nouvelle catégorie d'outils située entre le fer et le diamant :
|
||||||
|
|
||||||
|
#### Pioche en Éclat de Diamant (Shard Diamond Pickaxe)
|
||||||
|
- **Durabilité** : 200 utilisations
|
||||||
|
- **Vitesse de minage** : 7f
|
||||||
|
- **Enchantabilité** : 9 niveaux
|
||||||
|
- **Réparation** : Utilise des Diamond Shards
|
||||||
|
|
||||||
|
#### Pelle en Éclat de Diamant (Shard Diamond Shovel)
|
||||||
|
- **Durabilité** : 200 utilisations
|
||||||
|
- **Vitesse de minage** : 4f
|
||||||
|
- **Enchantabilité** : 9 niveaux
|
||||||
|
|
||||||
|
#### Hache en Éclat de Diamant (Shard Diamond Axe)
|
||||||
|
- **Durabilité** : 200 utilisations
|
||||||
|
- **Vitesse de minage** : 7f
|
||||||
|
- **Enchantabilité** : 9 niveaux
|
||||||
|
- **Dégâts** : Équilibré pour le combat
|
||||||
|
|
||||||
|
## 📍 Distribution des Minerais par Biomes
|
||||||
|
|
||||||
|
Le mod utilise une classification logique des biomes pour la génération des minerais :
|
||||||
|
|
||||||
|
### 🏔️ mountain_biomes (7 biomes)
|
||||||
|
**Utilisé par** : High Emerald Ore
|
||||||
|
|
||||||
|
Biomes de montagne et hauts plateaux :
|
||||||
|
- windswept_hills, windswept_gravelly_hills, snowy_slopes
|
||||||
|
- frozen_peaks, jagged_peaks, stony_peaks
|
||||||
|
- meadow
|
||||||
|
|
||||||
|
### ❄️ cold_biomes (16 biomes)
|
||||||
|
**Utilisé par** : Concentrated Diamond, Lapis, Redstone (deepslate)
|
||||||
|
|
||||||
|
Zones froides et montagnes enneigées :
|
||||||
|
- snowy_slopes, snowy_beach, snowy_plains, snowy_taiga, ice_spikes
|
||||||
|
- old_growth_pine_taiga, old_growth_spruce_taiga, taiga
|
||||||
|
- cold_ocean, deep_cold_ocean
|
||||||
|
- frozen_peaks, jagged_peaks, stony_peaks
|
||||||
|
- dripstone_caves, deep_dark
|
||||||
|
|
||||||
|
### 🔥 hot_biomes (15 biomes)
|
||||||
|
**Utilisé par** : Pure Golden, Redstone, Copper (toutes variantes)
|
||||||
|
|
||||||
|
Zones chaudes et tropicales :
|
||||||
|
- desert, badlands, eroded_badlands, wooded_badlands
|
||||||
|
- deep_lukewarm_ocean, lukewarm_ocean
|
||||||
|
- mangrove_swamp, warm_ocean
|
||||||
|
- bamboo_jungle, jungle, sparse_jungle
|
||||||
|
- deep_dark
|
||||||
|
|
||||||
|
### 🌤️ tempered_biomes (13 biomes)
|
||||||
|
**Utilisé par** : Concentrated Coal, Iron (toutes variantes)
|
||||||
|
|
||||||
|
Biomes tempérés de surface et souterrains :
|
||||||
|
- birch_forest, dark_forest, flower_forest, forest
|
||||||
|
- old_growth_birch_forest, windswept_forest, swamp
|
||||||
|
- cherry_grove, windswept_gravelly_hills
|
||||||
|
- deep_ocean, ocean
|
||||||
|
- lush_caves, deep_dark
|
||||||
|
|
||||||
|
### ⭐ rare_biomes (2 biomes)
|
||||||
|
**Utilisé par** : Lower Emerald Ore
|
||||||
|
|
||||||
|
Biomes très rares :
|
||||||
|
- mushroom_fields
|
||||||
|
- ice_spikes
|
||||||
|
|
||||||
|
### 🔵 forge:any
|
||||||
|
**Utilisé par** : Shard Diamond Ore (toutes les variantes)
|
||||||
|
|
||||||
|
- **TOUS les biomes**
|
||||||
|
|
||||||
|
## Mécaniques de Jeu
|
||||||
|
|
||||||
|
### Génération du Monde
|
||||||
|
|
||||||
|
- **Distribution des minerais** : Utilise le système de génération de minerais de Minecraft avec des tags de biomes personnalisés
|
||||||
|
- **Profondeur** : Configuré pour la génération souterraine
|
||||||
|
- **Taille des filons** : Varie selon le type de minerai
|
||||||
|
|
||||||
|
### Mécaniques de Drop
|
||||||
|
|
||||||
|
- **Expérience** : Tous les minerais personnalisés dropent des orbes d'expérience lorsqu'ils sont minés
|
||||||
|
- **Silk Touch** : Les minerais peuvent être minés avec l'enchantement Silk Touch pour obtenir le bloc entier
|
||||||
|
- **Fortune** : L'enchantement Fortune est supporté pour augmenter les drops
|
||||||
|
|
||||||
|
### Système de Progression
|
||||||
|
|
||||||
|
Le mod introduit une progression intéressante :
|
||||||
|
|
||||||
|
1. **Début de jeu** : Utilisation des outils en fer, exploration des surface pour Shard Diamond Ore
|
||||||
|
2. **Milieu de jeu** : Acquisition des Diamond Shards et craft des outils en Diamond Shard
|
||||||
|
3. **Fin de jeu** : Exploration des zones froides pour Concentrated Diamond, accumulation de diamants complets
|
||||||
|
|
||||||
|
## Recettes de Craft
|
||||||
|
|
||||||
|
### Diamant à partir d'Éclats
|
||||||
|
```
|
||||||
|
[Éclat] [Éclat] [Éclat]
|
||||||
|
[Éclat] [Éclat] [Éclat]
|
||||||
|
[Éclat] [Éclat] [Éclat]
|
||||||
|
= 1 Diamant
|
||||||
|
```
|
||||||
|
|
||||||
|
### Outils en Diamond Shard
|
||||||
|
Les recettes suivent le pattern standard des outils Minecraft :
|
||||||
|
- **Pioche** : 2 Diamond Shards + 3 bâtons
|
||||||
|
- **Pelle** : 1 Diamond Shard + 2 bâtons
|
||||||
|
- **Hache** : 3 Diamond Shards + 2 bâtons
|
||||||
|
|
||||||
|
## Intégration
|
||||||
|
|
||||||
|
### Mode Créatif
|
||||||
|
- **Onglet Ingrédients** : Diamond Shards et blocs de minerais
|
||||||
|
- **Onglet Outils** : Outils en Diamond Shard
|
||||||
|
- **Onglets Standard Minecraft** : Intégration native dans les onglets vanilla
|
||||||
|
|
||||||
|
### Langue
|
||||||
|
Le mod inclut des fichiers de localisation en anglais et français avec des noms descriptifs pour tous les blocs et objets.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
Le mod inclut un système de configuration qui permet aux utilisateurs et aux pack makers de personnaliser certains aspects du mod.
|
||||||
|
|
||||||
|
> **Note** : Les stats des outils (durabilité, vitesse) ne sont pas configurables car les items sont créés avant le chargement de la configuration par Forge.
|
||||||
|
|
||||||
|
### Emplacement du Fichier de Configuration
|
||||||
|
|
||||||
|
Après le premier lancement du mod, un fichier de configuration est généré à :
|
||||||
|
```
|
||||||
|
config/custom_ore_gen-common.toml
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options de Configuration
|
||||||
|
|
||||||
|
#### 🪨 Génération des Minerais
|
||||||
|
Contrôlez où et comment les minerais se génèrent
|
||||||
|
|
||||||
|
#### 💎 Drops des Minerais
|
||||||
|
Contrôlez ce que les minerais dropent
|
||||||
|
|
||||||
|
#### 🎛️ Activation des Fonctionnalités
|
||||||
|
Activez ou désactivez facilement les fonctionnalités du mod
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
1. Assurez-vous d'avoir Minecraft 1.20.1 installé avec Forge 47.3.0+
|
||||||
|
2. Placez le fichier .jar du mod dans le dossier `mods` de votre installation Minecraft
|
||||||
|
3. Lancez le jeu avec le profil Forge
|
||||||
|
|
||||||
|
## Philosophie du Mod
|
||||||
|
|
||||||
|
Custom Ore Gem est conçu pour :
|
||||||
|
- **Augmenter la variété des minerais** avec de nouvelles variantes et raretés
|
||||||
|
- **Introduire un système de progression** à travers les Diamond Shards
|
||||||
|
- **Équilibrer la collecte de ressources** avec des récompenses d'expérience
|
||||||
|
- **Fournir des options d'outils personnalisés** entre les niveaux fer et diamant
|
||||||
|
- **Enrichir le gameplay** avec une distribution logique des minerais par biome
|
||||||
|
|
||||||
|
## Crédits
|
||||||
|
|
||||||
|
- Développé avec MCreator
|
||||||
|
- Framework Minecraft Forge 1.20.1
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Version** : 1.0.0
|
||||||
|
**Pour Minecraft** : 1.20.1
|
||||||
|
**License** : Consultez le fichier license.txt pour plus d'informations
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
plugins {
|
||||||
|
id 'eclipse'
|
||||||
|
id 'net.minecraftforge.gradle' version '[6.0.16,6.2)'
|
||||||
|
}
|
||||||
|
|
||||||
|
version = '1.0'
|
||||||
|
group = 'com.yourname.modid'
|
||||||
|
archivesBaseName = 'modid'
|
||||||
|
|
||||||
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
||||||
|
|
||||||
|
minecraft {
|
||||||
|
mappings channel: 'official', version: '1.20.1'
|
||||||
|
|
||||||
|
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
|
||||||
|
|
||||||
|
copyIdeResources = true
|
||||||
|
|
||||||
|
runs {
|
||||||
|
client {
|
||||||
|
def mcreatorJvmOptions = System.getenv('MCREATOR_JVM_OPTIONS')
|
||||||
|
if (mcreatorJvmOptions) {
|
||||||
|
jvmArgs += mcreatorJvmOptions.split("\\s+").findAll { it.trim() }.toList()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
}
|
||||||
|
|
||||||
|
configureEach {
|
||||||
|
workingDirectory project.file('run')
|
||||||
|
|
||||||
|
property 'forge.logging.markers', 'REGISTRIES'
|
||||||
|
property 'forge.logging.console.level', 'debug'
|
||||||
|
|
||||||
|
mods {
|
||||||
|
examplemod {
|
||||||
|
source sourceSets.main
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
minecraft 'net.minecraftforge:forge:1.20.1-47.3.0'
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType(JavaCompile).configureEach {
|
||||||
|
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: 'mcreator.gradle'
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
|||||||
|
Java Launcher: C:\Users\polar\.mcreator\gradle\jdks\eclipse_adoptium-17-amd64-windows\jdk-17.0.17+10\bin\java.exe
|
||||||
|
Arguments: '--inJar, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0\forge-1.20.1-47.3.0-injected.jar, --outJar, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1.jar, --logFile, accesstransform.log, --atFile, C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_atJar_4\parent_at.cfg'
|
||||||
|
Classpath:
|
||||||
|
- C:\Users\polar\.mcreator\gradle\caches\forge_gradle\maven_downloader\net\minecraftforge\accesstransformers\8.2.1\accesstransformers-8.2.1-fatjar.jar
|
||||||
|
Working directory: C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_atJar_4
|
||||||
|
Main class: net.minecraftforge.accesstransformer.TransformerProcessor
|
||||||
|
====================================
|
||||||
@@ -0,0 +1,470 @@
|
|||||||
|
# net.minecraftforge:forge:1.20.1-47.3.0:userdev - ats/accesstransformer.cfg
|
||||||
|
public net.minecraft.advancements.CriteriaTriggers m_10595_(Lnet/minecraft/advancements/CriterionTrigger;)Lnet/minecraft/advancements/CriterionTrigger; # register
|
||||||
|
default net.minecraft.client.KeyMapping f_90817_ # isDown
|
||||||
|
public net.minecraft.client.Minecraft f_90987_ # textureManager
|
||||||
|
public net.minecraft.client.Minecraft m_91271_()V # createSearchTrees
|
||||||
|
public-f net.minecraft.client.Options f_92059_ # keyMappings
|
||||||
|
public net.minecraft.client.Options$FieldAccess
|
||||||
|
#group protected net.minecraft.client.gui.Gui *
|
||||||
|
protected net.minecraft.client.gui.Gui f_168664_ # scopeScale
|
||||||
|
protected net.minecraft.client.gui.Gui f_168665_ # SPYGLASS_SCOPE_LOCATION
|
||||||
|
protected net.minecraft.client.gui.Gui f_168666_ # POWDER_SNOW_OUTLINE_LOCATION
|
||||||
|
protected net.minecraft.client.gui.Gui f_168667_ # COLOR_WHITE
|
||||||
|
protected net.minecraft.client.gui.Gui f_168668_ # MIN_CROSSHAIR_ATTACK_SPEED
|
||||||
|
protected net.minecraft.client.gui.Gui f_168669_ # NUM_HEARTS_PER_ROW
|
||||||
|
protected net.minecraft.client.gui.Gui f_168670_ # LINE_HEIGHT
|
||||||
|
protected net.minecraft.client.gui.Gui f_168671_ # SPACER
|
||||||
|
protected net.minecraft.client.gui.Gui f_168672_ # PORTAL_OVERLAY_ALPHA_MIN
|
||||||
|
protected net.minecraft.client.gui.Gui f_168673_ # HEART_SIZE
|
||||||
|
protected net.minecraft.client.gui.Gui f_168674_ # HEART_SEPARATION
|
||||||
|
protected net.minecraft.client.gui.Gui f_193828_ # autosaveIndicatorValue
|
||||||
|
protected net.minecraft.client.gui.Gui f_193829_ # lastAutosaveIndicatorValue
|
||||||
|
protected net.minecraft.client.gui.Gui f_193830_ # SAVING_TEXT
|
||||||
|
protected net.minecraft.client.gui.Gui f_193831_ # AUTOSAVE_FADE_SPEED_FACTOR
|
||||||
|
protected net.minecraft.client.gui.Gui f_238167_ # chatDisabledByPlayerShown
|
||||||
|
protected net.minecraft.client.gui.Gui f_279580_ # GUI_ICONS_LOCATION
|
||||||
|
protected net.minecraft.client.gui.Gui f_92970_ # titleFadeInTime
|
||||||
|
protected net.minecraft.client.gui.Gui f_92971_ # titleStayTime
|
||||||
|
protected net.minecraft.client.gui.Gui f_92972_ # titleFadeOutTime
|
||||||
|
protected net.minecraft.client.gui.Gui f_92973_ # lastHealth
|
||||||
|
protected net.minecraft.client.gui.Gui f_92974_ # displayHealth
|
||||||
|
protected net.minecraft.client.gui.Gui f_92975_ # lastHealthTime
|
||||||
|
protected net.minecraft.client.gui.Gui f_92976_ # healthBlinkTime
|
||||||
|
protected net.minecraft.client.gui.Gui f_92977_ # screenWidth
|
||||||
|
protected net.minecraft.client.gui.Gui f_92978_ # screenHeight
|
||||||
|
protected net.minecraft.client.gui.Gui f_92981_ # VIGNETTE_LOCATION
|
||||||
|
protected net.minecraft.client.gui.Gui f_92982_ # WIDGETS_LOCATION
|
||||||
|
protected net.minecraft.client.gui.Gui f_92983_ # PUMPKIN_BLUR_LOCATION
|
||||||
|
protected net.minecraft.client.gui.Gui f_92984_ # DEMO_EXPIRED_TEXT
|
||||||
|
protected net.minecraft.client.gui.Gui f_92985_ # random
|
||||||
|
protected net.minecraft.client.gui.Gui f_92986_ # minecraft
|
||||||
|
protected net.minecraft.client.gui.Gui f_92987_ # itemRenderer
|
||||||
|
protected net.minecraft.client.gui.Gui f_92988_ # chat
|
||||||
|
protected net.minecraft.client.gui.Gui f_92989_ # tickCount
|
||||||
|
protected net.minecraft.client.gui.Gui f_92990_ # overlayMessageString
|
||||||
|
protected net.minecraft.client.gui.Gui f_92991_ # overlayMessageTime
|
||||||
|
protected net.minecraft.client.gui.Gui f_92992_ # animateOverlayMessageColor
|
||||||
|
protected net.minecraft.client.gui.Gui f_92993_ # toolHighlightTimer
|
||||||
|
protected net.minecraft.client.gui.Gui f_92994_ # lastToolHighlight
|
||||||
|
protected net.minecraft.client.gui.Gui f_92995_ # debugScreen
|
||||||
|
protected net.minecraft.client.gui.Gui f_92996_ # subtitleOverlay
|
||||||
|
protected net.minecraft.client.gui.Gui f_92997_ # spectatorGui
|
||||||
|
protected net.minecraft.client.gui.Gui f_92998_ # tabList
|
||||||
|
protected net.minecraft.client.gui.Gui f_92999_ # bossOverlay
|
||||||
|
protected net.minecraft.client.gui.Gui f_93000_ # titleTime
|
||||||
|
protected net.minecraft.client.gui.Gui f_93001_ # title
|
||||||
|
protected net.minecraft.client.gui.Gui f_93002_ # subtitle
|
||||||
|
#endgroup
|
||||||
|
protected net.minecraft.client.gui.Gui m_168688_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/player/Player;IIIIFIIIZ)V # renderHearts
|
||||||
|
public net.minecraft.client.gui.Gui m_280030_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/scores/Objective;)V # displayScoreboardSidebar
|
||||||
|
public net.minecraft.client.gui.Gui m_280130_(Lnet/minecraft/client/gui/GuiGraphics;)V # renderCrosshair
|
||||||
|
public net.minecraft.client.gui.Gui m_280154_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/Entity;)V # renderVignette
|
||||||
|
protected net.minecraft.client.gui.Gui m_280155_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;F)V # renderTextureOverlay
|
||||||
|
public net.minecraft.client.gui.Gui m_280278_(Lnet/minecraft/client/gui/GuiGraphics;F)V # renderSpyglassOverlay
|
||||||
|
protected net.minecraft.client.gui.Gui m_280379_(Lnet/minecraft/client/gui/GuiGraphics;F)V # renderPortalOverlay
|
||||||
|
public net.minecraft.client.gui.Gui m_280518_(FLnet/minecraft/client/gui/GuiGraphics;)V # renderHotbar
|
||||||
|
public net.minecraft.client.gui.Gui m_280523_(Lnet/minecraft/client/gui/GuiGraphics;)V # renderEffects
|
||||||
|
protected net.minecraft.client.gui.Gui m_93039_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;III)V # drawBackdrop
|
||||||
|
protected net.minecraft.client.gui.components.AbstractSelectionList$Entry f_93521_ # list
|
||||||
|
public net.minecraft.client.gui.components.AbstractSliderButton f_263683_ # SLIDER_LOCATION
|
||||||
|
protected net.minecraft.client.gui.components.AbstractSliderButton m_264270_()I # getHandleTextureY
|
||||||
|
protected net.minecraft.client.gui.components.AbstractSliderButton m_264355_()I # getTextureY
|
||||||
|
protected net.minecraft.client.gui.components.DebugScreenOverlay f_94032_ # block
|
||||||
|
protected net.minecraft.client.gui.components.DebugScreenOverlay f_94033_ # liquid
|
||||||
|
public net.minecraft.client.gui.screens.MenuScreens m_96206_(Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor;)V # register
|
||||||
|
public net.minecraft.client.gui.screens.MenuScreens$ScreenConstructor
|
||||||
|
public net.minecraft.client.gui.screens.Screen f_169369_ # renderables
|
||||||
|
public net.minecraft.client.model.geom.LayerDefinitions f_171106_ # OUTER_ARMOR_DEFORMATION
|
||||||
|
public net.minecraft.client.model.geom.LayerDefinitions f_171107_ # INNER_ARMOR_DEFORMATION
|
||||||
|
public net.minecraft.client.multiplayer.ClientPacketListener f_104899_ # commands
|
||||||
|
public net.minecraft.client.particle.FireworkParticles$Starter m_106767_(DDDDDD[I[IZZ)V # createParticle
|
||||||
|
public net.minecraft.client.particle.FireworkParticles$Starter m_106778_(DI[I[IZZ)V # createParticleBall
|
||||||
|
public net.minecraft.client.particle.FireworkParticles$Starter m_106785_(D[[D[I[IZZZ)V # createParticleShape
|
||||||
|
public net.minecraft.client.particle.FireworkParticles$Starter m_106793_([I[IZZ)V # createParticleBurst
|
||||||
|
public net.minecraft.client.particle.ParticleEngine m_107378_(Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration;)V # register
|
||||||
|
public net.minecraft.client.particle.ParticleEngine m_107381_(Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider;)V # register
|
||||||
|
public net.minecraft.client.particle.ParticleEngine m_272137_(Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider$Sprite;)V # register
|
||||||
|
public net.minecraft.client.particle.ParticleEngine$SpriteParticleRegistration
|
||||||
|
public net.minecraft.client.player.LocalPlayer m_8088_()I # getPermissionLevel
|
||||||
|
public net.minecraft.client.renderer.GameRenderer m_109128_(Lnet/minecraft/resources/ResourceLocation;)V # loadEffect
|
||||||
|
public net.minecraft.client.renderer.LevelRenderer m_109817_()Z # shouldShowEntityOutlines
|
||||||
|
protected-f net.minecraft.client.renderer.RenderStateShard f_110131_ # setupState
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$BooleanStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$CullStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$DepthTestStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$EmptyTextureStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$LayeringStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$LightmapStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$MultiTextureStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$OffsetTexturingStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$OutputStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$OverlayStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$ShaderStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$TextureStateShard
|
||||||
|
protected-f net.minecraft.client.renderer.RenderStateShard$TextureStateShard f_110329_ # blur
|
||||||
|
protected-f net.minecraft.client.renderer.RenderStateShard$TextureStateShard f_110330_ # mipmap
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$TexturingStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$TransparencyStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderStateShard$WriteMaskStateShard
|
||||||
|
public net.minecraft.client.renderer.RenderType m_173215_(Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; # create
|
||||||
|
public net.minecraft.client.renderer.RenderType$CompositeState
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockElement m_111320_(Lnet/minecraft/core/Direction;)[F # uvsByFace
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockElement$Deserializer
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockElement$Deserializer <init>()V # constructor
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockElementFace$Deserializer
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockElementFace$Deserializer <init>()V # constructor
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockFaceUV$Deserializer
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockFaceUV$Deserializer <init>()V # constructor
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockModel f_111417_ # textureMap
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockModel f_111418_ # parent
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockModel f_111424_ # hasAmbientOcclusion
|
||||||
|
public net.minecraft.client.renderer.block.model.BlockModel m_111437_(Lnet/minecraft/client/renderer/block/model/BlockElement;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; # bakeFace
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemModelGenerator m_111638_(ILjava/lang/String;Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; # processFrames
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemOverride$Deserializer
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemOverride$Deserializer <init>()V # constructor
|
||||||
|
protected net.minecraft.client.renderer.block.model.ItemOverrides <init>()V # constructor
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemOverrides$BakedOverride
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer <init>()V # constructor
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer f_111769_ # DEFAULT_ROTATION
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer f_111770_ # DEFAULT_TRANSLATION
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer f_111771_ # DEFAULT_SCALE
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemTransforms$Deserializer
|
||||||
|
public net.minecraft.client.renderer.block.model.ItemTransforms$Deserializer <init>()V # constructor
|
||||||
|
public net.minecraft.client.renderer.blockentity.BlockEntityRenderDispatcher f_112253_ # fontRenderer - needed for rendering text in TESR items before entering world
|
||||||
|
public net.minecraft.client.renderer.blockentity.BlockEntityRenderers m_173590_(Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V # register
|
||||||
|
private-f net.minecraft.client.renderer.blockentity.PistonHeadRenderer f_112441_ # blockRenderer - it's static so we need to un-finalize in case this class loads to early.
|
||||||
|
public net.minecraft.client.renderer.blockentity.SkullBlockRenderer f_112519_ # SKIN_BY_TYPE
|
||||||
|
public net.minecraft.client.renderer.entity.EntityRenderDispatcher f_114362_ # renderers
|
||||||
|
public net.minecraft.client.renderer.entity.EntityRenderers m_174036_(Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V # register
|
||||||
|
protected net.minecraft.client.renderer.entity.ItemEntityRenderer m_115042_(Lnet/minecraft/world/item/ItemStack;)I # getRenderAmount
|
||||||
|
public net.minecraft.client.renderer.entity.ItemRenderer m_115162_(Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Lnet/minecraft/world/item/ItemStack;II)V # renderQuadList
|
||||||
|
public net.minecraft.client.renderer.entity.ItemRenderer m_115189_(Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;IILcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V # renderModelLists
|
||||||
|
public net.minecraft.client.renderer.entity.LivingEntityRenderer m_115326_(Lnet/minecraft/client/renderer/entity/layers/RenderLayer;)Z # addLayer
|
||||||
|
public net.minecraft.client.renderer.texture.SpriteContents f_243731_ # byMipLevel
|
||||||
|
default net.minecraft.client.renderer.texture.SpriteContents f_244575_ # animatedTexture
|
||||||
|
default net.minecraft.client.renderer.texture.SpriteContents m_245088_()I # getFrameCount
|
||||||
|
public net.minecraft.client.resources.ClientPackSource m_246691_(Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResources; # createVanillaPackSource
|
||||||
|
protected net.minecraft.client.resources.TextureAtlasHolder f_118884_ # textureAtlas
|
||||||
|
protected net.minecraft.client.resources.model.ModelBakery m_119364_(Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockModel; # loadBlockModel
|
||||||
|
public net.minecraft.client.resources.model.SimpleBakedModel$Builder <init>(ZZZLnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V # constructor
|
||||||
|
public net.minecraft.client.sounds.SoundEngine f_120217_ # soundManager
|
||||||
|
public net.minecraft.commands.CommandSourceStack f_81288_ # source
|
||||||
|
public net.minecraft.commands.arguments.selector.EntitySelectorParser m_121229_()V # finalizePredicates
|
||||||
|
public net.minecraft.commands.arguments.selector.EntitySelectorParser m_121317_()V # parseOptions
|
||||||
|
public net.minecraft.commands.arguments.selector.options.EntitySelectorOptions m_121453_(Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V # register
|
||||||
|
public net.minecraft.core.Holder$Reference m_205769_(Ljava/util/Collection;)V # bindTags
|
||||||
|
public net.minecraft.core.Holder$Reference m_246870_(Lnet/minecraft/resources/ResourceKey;)V # bindKey
|
||||||
|
public net.minecraft.core.Holder$Reference m_247654_(Ljava/lang/Object;)V # bindValue
|
||||||
|
public net.minecraft.core.Holder$Reference$Type
|
||||||
|
public net.minecraft.core.HolderSet$Named m_205835_(Ljava/util/List;)V # bind
|
||||||
|
protected net.minecraft.core.IdMapper f_122653_ # nextId
|
||||||
|
protected net.minecraft.core.IdMapper f_122654_ # tToId - internal map
|
||||||
|
protected net.minecraft.core.IdMapper f_122655_ # idToT - internal index list
|
||||||
|
protected net.minecraft.core.MappedRegistry f_244282_ # unregisteredIntrusiveHolders
|
||||||
|
public net.minecraft.core.RegistrySynchronization$NetworkedRegistryData
|
||||||
|
public net.minecraft.core.particles.ParticleType <init>(ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;)V # constructor
|
||||||
|
public net.minecraft.core.particles.SimpleParticleType <init>(Z)V # constructor
|
||||||
|
protected net.minecraft.data.loot.BlockLootSubProvider m_245335_(Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; # createSilkTouchOnlyTable
|
||||||
|
protected net.minecraft.data.loot.BlockLootSubProvider m_245602_(Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; # createPotFlowerItemTable
|
||||||
|
protected net.minecraft.data.loot.BlockLootSubProvider m_246900_(Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; # createSelfDropDispatchTable
|
||||||
|
protected net.minecraft.data.loot.EntityLootSubProvider m_245552_(Lnet/minecraft/world/entity/EntityType;)Z # canHaveLootTable
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider f_236355_ # recipePathProvider
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider f_236356_ # advancementPathProvider
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_125979_(Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; # insideOf
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_126011_([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; # inventoryTrigger
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_176520_(Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; # has
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_176523_(Lnet/minecraft/data/BlockFamily;Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; # getBaseBlock
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_176658_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # buttonBuilder
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_176678_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # fenceBuilder
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_176684_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # fenceGateBuilder
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_176720_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # trapdoorBuilder
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_176726_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # signBuilder
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_176739_(Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V # smeltingResultFromBase
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_245792_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; # cutBuilder
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_245809_(Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;Ljava/lang/String;)V # oreCooking
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_245864_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # wallBuilder
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_247174_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # polishedBuilder
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_247347_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # pressurePlateBuilder
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_247368_(Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V # nineBlockStorageRecipes
|
||||||
|
protected net.minecraft.data.recipes.RecipeProvider m_247434_(Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;ILnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;F)V # simpleCookingRecipe
|
||||||
|
public net.minecraft.data.recipes.ShapedRecipeBuilder$Result
|
||||||
|
public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_243671_ # COAL_SMELTABLES
|
||||||
|
public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_243779_ # IRON_SMELTABLES
|
||||||
|
public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_243908_ # COPPER_SMELTABLES
|
||||||
|
public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_243974_ # DIAMOND_SMELTABLES
|
||||||
|
public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_244369_ # GOLD_SMELTABLES
|
||||||
|
public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_244430_ # EMERALD_SMELTABLES
|
||||||
|
public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_244565_ # REDSTONE_SMELTABLES
|
||||||
|
public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_244628_ # LAPIS_SMELTABLES
|
||||||
|
public-f net.minecraft.data.registries.RegistriesDatapackGenerator m_6055_()Ljava/lang/String; # getName
|
||||||
|
public net.minecraft.data.tags.IntrinsicHolderTagsProvider$IntrinsicTagAppender
|
||||||
|
protected net.minecraft.data.tags.TagsProvider f_126543_ # builders
|
||||||
|
public-f net.minecraft.data.tags.TagsProvider m_6055_()Ljava/lang/String; # getName
|
||||||
|
public net.minecraft.data.tags.TagsProvider$TagAppender
|
||||||
|
public net.minecraft.gametest.framework.GameTestServer <init>(Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)V # constructor
|
||||||
|
public net.minecraft.resources.ResourceLocation m_135835_(C)Z # validNamespaceChar
|
||||||
|
public net.minecraft.resources.ResourceLocation m_135841_(Ljava/lang/String;)Z # isValidPath
|
||||||
|
public net.minecraft.resources.ResourceLocation m_135843_(Ljava/lang/String;)Z # isValidNamespace
|
||||||
|
protected net.minecraft.server.MinecraftServer f_129726_ # nextTickTime
|
||||||
|
public net.minecraft.server.MinecraftServer$ReloadableResources
|
||||||
|
public net.minecraft.server.dedicated.DedicatedServer f_139600_ # consoleInput
|
||||||
|
public net.minecraft.server.level.ServerChunkCache f_8329_ # level
|
||||||
|
public net.minecraft.server.level.ServerLevel m_142646_()Lnet/minecraft/world/level/entity/LevelEntityGetter; # getEntities
|
||||||
|
public net.minecraft.server.level.ServerPlayer f_8940_ # containerCounter
|
||||||
|
public net.minecraft.server.level.ServerPlayer m_143399_(Lnet/minecraft/world/inventory/AbstractContainerMenu;)V # initMenu
|
||||||
|
public net.minecraft.server.level.ServerPlayer m_9217_()V # nextContainerCounter
|
||||||
|
public net.minecraft.server.network.ServerGamePacketListenerImpl f_9742_ # connection
|
||||||
|
public net.minecraft.server.network.ServerLoginPacketListenerImpl f_10021_ # gameProfile
|
||||||
|
public net.minecraft.server.packs.repository.ServerPacksSource m_246173_()Lnet/minecraft/server/packs/VanillaPackResources; # createVanillaPackSource
|
||||||
|
public net.minecraft.server.packs.resources.FallbackResourceManager f_10599_ # fallbacks
|
||||||
|
public net.minecraft.util.ExtraCodecs$EitherCodec
|
||||||
|
public net.minecraft.util.datafix.fixes.StructuresBecomeConfiguredFix$Conversion
|
||||||
|
public net.minecraft.util.thread.BlockableEventLoop m_18689_(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; # submitAsync
|
||||||
|
#group public net.minecraft.world.damagesource.DamageSource *() #All methods public, most are already
|
||||||
|
public net.minecraft.world.damagesource.DamageSource <init>(Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V # constructor
|
||||||
|
#endgroup
|
||||||
|
protected net.minecraft.world.entity.Entity f_19843_ # ENTITY_COUNTER
|
||||||
|
public net.minecraft.world.entity.Entity m_20078_()Ljava/lang/String; # getEncodeId
|
||||||
|
public net.minecraft.world.entity.ExperienceOrb f_20770_ # value
|
||||||
|
public net.minecraft.world.entity.Mob f_21345_ # goalSelector
|
||||||
|
public net.minecraft.world.entity.Mob f_21346_ # targetSelector
|
||||||
|
public net.minecraft.world.entity.SpawnPlacements m_21754_(Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V # register
|
||||||
|
public net.minecraft.world.entity.ai.memory.MemoryModuleType <init>(Ljava/util/Optional;)V # constructor
|
||||||
|
public net.minecraft.world.entity.ai.sensing.SensorType <init>(Ljava/util/function/Supplier;)V # constructor
|
||||||
|
protected net.minecraft.world.entity.item.PrimedTnt m_32103_()V # explode - make it easier to extend TNTEntity with custom explosion logic
|
||||||
|
protected net.minecraft.world.entity.monster.AbstractSkeleton m_7878_()Lnet/minecraft/sounds/SoundEvent; # getStepSound - make AbstractSkeletonEntity implementable
|
||||||
|
protected net.minecraft.world.entity.monster.Skeleton m_7878_()Lnet/minecraft/sounds/SoundEvent; # getStepSound - make AbstractSkeletonEntity implementable
|
||||||
|
protected net.minecraft.world.entity.monster.Stray m_7878_()Lnet/minecraft/sounds/SoundEvent; # getStepSound - make AbstractSkeletonEntity implementable
|
||||||
|
protected net.minecraft.world.entity.monster.WitherSkeleton m_7878_()Lnet/minecraft/sounds/SoundEvent; # getStepSound - make AbstractSkeletonEntity implementable
|
||||||
|
public net.minecraft.world.entity.npc.VillagerType <init>(Ljava/lang/String;)V # constructor
|
||||||
|
public net.minecraft.world.entity.player.Player m_6915_()V # closeContainer
|
||||||
|
protected net.minecraft.world.entity.projectile.Projectile <init>(Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V # constructor
|
||||||
|
private-f net.minecraft.world.entity.raid.Raid$RaiderType f_37813_ # VALUES
|
||||||
|
public net.minecraft.world.entity.schedule.Activity <init>(Ljava/lang/String;)V # constructor
|
||||||
|
protected net.minecraft.world.entity.vehicle.AbstractMinecart m_213728_()Lnet/minecraft/world/item/Item; # getDropItem - make AbstractMinecart implementable
|
||||||
|
public net.minecraft.world.inventory.AnvilMenu f_39000_ # repairItemCountCost
|
||||||
|
public net.minecraft.world.inventory.MenuType <init>(Lnet/minecraft/world/inventory/MenuType$MenuSupplier;Lnet/minecraft/world/flag/FeatureFlagSet;)V # constructor
|
||||||
|
public net.minecraft.world.inventory.MenuType$MenuSupplier
|
||||||
|
public net.minecraft.world.item.CreativeModeTab$Output
|
||||||
|
public net.minecraft.world.item.CreativeModeTab$TabVisibility
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256725_ # COLORED_BLOCKS
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256731_ # SPAWN_EGGS
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256750_ # SEARCH
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256776_ # NATURAL_BLOCKS
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256788_ # BUILDING_BLOCKS
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256791_ # FUNCTIONAL_BLOCKS
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256797_ # COMBAT
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256837_ # OP_BLOCKS
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256839_ # FOOD_AND_DRINKS
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256869_ # TOOLS_AND_UTILITIES
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256917_ # HOTBAR
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_256968_ # INGREDIENTS
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_257028_ # REDSTONE_BLOCKS
|
||||||
|
public net.minecraft.world.item.CreativeModeTabs f_257039_ # INVENTORY
|
||||||
|
#group public net.minecraft.world.item.Item <init>
|
||||||
|
public net.minecraft.world.item.AxeItem <init>(Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.item.DiggerItem <init>(FFLnet/minecraft/world/item/Tier;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.item.HoeItem <init>(Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.item.PickaxeItem <init>(Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.item.RecordItem <init>(ILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;I)V # constructor
|
||||||
|
#endgroup
|
||||||
|
private-f net.minecraft.world.item.ItemDisplayContext f_268735_ # id
|
||||||
|
public net.minecraft.world.item.ItemStackLinkedSet f_260558_ # TYPE_AND_TAG
|
||||||
|
public net.minecraft.world.item.alchemy.PotionBrewing$Mix
|
||||||
|
public net.minecraft.world.item.alchemy.PotionBrewing$Mix f_43533_ # ingredient
|
||||||
|
public net.minecraft.world.item.context.BlockPlaceContext <init>(Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V # constructor
|
||||||
|
public net.minecraft.world.item.context.UseOnContext <init>(Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V # constructor
|
||||||
|
public-f net.minecraft.world.item.crafting.Ingredient
|
||||||
|
protected net.minecraft.world.item.crafting.Ingredient <init>(Ljava/util/stream/Stream;)V # constructor
|
||||||
|
public net.minecraft.world.item.crafting.Ingredient m_43919_(Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Ingredient$Value; # valueFromJson
|
||||||
|
public+f net.minecraft.world.item.crafting.Ingredient m_43923_(Lnet/minecraft/network/FriendlyByteBuf;)V # toNetwork
|
||||||
|
public net.minecraft.world.item.crafting.Ingredient m_43938_(Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; # fromValues
|
||||||
|
public net.minecraft.world.item.crafting.Ingredient$ItemValue
|
||||||
|
public net.minecraft.world.item.crafting.Ingredient$ItemValue <init>(Lnet/minecraft/world/item/ItemStack;)V # constructor
|
||||||
|
public net.minecraft.world.item.crafting.Ingredient$TagValue
|
||||||
|
public net.minecraft.world.item.crafting.Ingredient$TagValue <init>(Lnet/minecraft/tags/TagKey;)V # constructor
|
||||||
|
public net.minecraft.world.item.crafting.Ingredient$Value
|
||||||
|
public net.minecraft.world.level.GameRules m_46189_(Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;Lnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$Key; # register
|
||||||
|
public net.minecraft.world.level.GameRules$BooleanValue m_46250_(Z)Lnet/minecraft/world/level/GameRules$Type; # create
|
||||||
|
public net.minecraft.world.level.GameRules$BooleanValue m_46252_(ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; # create
|
||||||
|
public net.minecraft.world.level.GameRules$IntegerValue m_46294_(ILjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; # create
|
||||||
|
public net.minecraft.world.level.GameRules$IntegerValue m_46312_(I)Lnet/minecraft/world/level/GameRules$Type; # create
|
||||||
|
public net.minecraft.world.level.Level f_46437_ # oRainLevel
|
||||||
|
public net.minecraft.world.level.Level f_46438_ # rainLevel
|
||||||
|
public net.minecraft.world.level.Level f_46439_ # oThunderLevel
|
||||||
|
public net.minecraft.world.level.Level f_46440_ # thunderLevel
|
||||||
|
public net.minecraft.world.level.biome.Biome$ClimateSettings
|
||||||
|
protected net.minecraft.world.level.biome.BiomeGenerationSettings$PlainBuilder f_254648_ # features
|
||||||
|
protected net.minecraft.world.level.biome.BiomeGenerationSettings$PlainBuilder f_254678_ # carvers
|
||||||
|
protected net.minecraft.world.level.biome.BiomeGenerationSettings$PlainBuilder m_255276_(I)V # addFeatureStepsUpTo
|
||||||
|
#group protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder *
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48005_ # fogColor
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48006_ # waterColor
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48007_ # waterFogColor
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48008_ # skyColor
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48009_ # foliageColorOverride
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48010_ # grassColorOverride
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48011_ # grassColorModifier
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48012_ # ambientParticle
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48013_ # ambientLoopSoundEvent
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48014_ # ambientMoodSettings
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48015_ # ambientAdditionsSettings
|
||||||
|
protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48016_ # backgroundMusic
|
||||||
|
#endgroup
|
||||||
|
protected net.minecraft.world.level.biome.MobSpawnSettings$Builder f_48362_ # spawners
|
||||||
|
protected net.minecraft.world.level.biome.MobSpawnSettings$Builder f_48363_ # mobSpawnCosts
|
||||||
|
protected net.minecraft.world.level.biome.MobSpawnSettings$Builder f_48364_ # creatureGenerationProbability
|
||||||
|
#group public net.minecraft.world.level.block.Block <init>
|
||||||
|
public net.minecraft.world.level.block.AirBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.AttachedStemBlock <init>(Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.AzaleaBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.BarrierBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.BaseCoralFanBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.BaseCoralPlantBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.BaseCoralPlantTypeBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.BaseCoralWallFanBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.BigDripleafBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.BigDripleafStemBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.BlastFurnaceBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.BushBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.ButtonBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;IZ)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CactusBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CakeBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CandleCakeBlock <init>(Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CartographyTableBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CarvedPumpkinBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.ChestBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.ChorusFlowerBlock <init>(Lnet/minecraft/world/level/block/ChorusPlantBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.ChorusPlantBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CoralFanBlock <init>(Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CoralPlantBlock <init>(Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CoralWallFanBlock <init>(Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CraftingTableBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CropBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.CrossCollisionBlock <init>(FFFFFLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.DeadBushBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.DecoratedPotBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.DirtPathBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.DispenserBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.DoorBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.EnchantmentTableBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.EndGatewayBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.EndPortalBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.EndRodBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.EnderChestBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.EquipableCarvedPumpkinBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.FaceAttachedHorizontalDirectionalBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.FarmBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.FletchingTableBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.FungusBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/block/Block;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.FurnaceBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.GrindstoneBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.HalfTransparentBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.HangingRootsBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.IronBarsBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.JigsawBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.JukeboxBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.KelpBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.KelpPlantBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.LadderBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.LecternBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.LeverBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.LiquidBlock <init>(Lnet/minecraft/world/level/material/FlowingFluid;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.LoomBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.MangroveRootsBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.MelonBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.NetherWartBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.NyliumBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.PinkPetalsBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.PipeBlock <init>(FLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.PlayerHeadBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.PlayerWallHeadBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.PoweredRailBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.PressurePlateBlock <init>(Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.PumpkinBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.RailBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.RedstoneTorchBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.RedstoneWallTorchBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.RepeaterBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.RodBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.RootsBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SaplingBlock <init>(Lnet/minecraft/world/level/block/grower/AbstractTreeGrower;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.ScaffoldingBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SeaPickleBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SeagrassBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SkullBlock <init>(Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SmithingTableBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SmokerBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SnowLayerBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SnowyDirtBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SpawnerBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SpongeBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.StairBlock <init>(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.StemBlock <init>(Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.StructureBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.StructureVoidBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.SugarCaneBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.TallGrassBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.TorchBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.TrapDoorBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.WallSkullBlock <init>(Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.WallTorchBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.WaterlilyBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.WeightedPressurePlateBlock <init>(ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.WetSpongeBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.WitherSkullBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.WitherWallSkullBlock <init>(Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
public net.minecraft.world.level.block.WoolCarpetBlock <init>(Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor
|
||||||
|
#endgroup
|
||||||
|
public net.minecraft.world.level.block.Block m_49805_(Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)V # popExperience
|
||||||
|
public net.minecraft.world.level.block.FireBlock m_221164_(Lnet/minecraft/world/level/block/state/BlockState;)I # getBurnOdds
|
||||||
|
public net.minecraft.world.level.block.FireBlock m_221166_(Lnet/minecraft/world/level/block/state/BlockState;)I # getIgniteOdds
|
||||||
|
public net.minecraft.world.level.block.entity.BlockEntityType$BlockEntitySupplier
|
||||||
|
public net.minecraft.world.level.block.entity.HopperBlockEntity m_59395_(I)V # setCooldown
|
||||||
|
public net.minecraft.world.level.block.entity.HopperBlockEntity m_59409_()Z # isOnCustomCooldown
|
||||||
|
public net.minecraft.world.level.block.state.properties.BlockSetType m_272115_(Lnet/minecraft/world/level/block/state/properties/BlockSetType;)Lnet/minecraft/world/level/block/state/properties/BlockSetType; # register
|
||||||
|
public net.minecraft.world.level.block.state.properties.WoodType m_61844_(Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; # register
|
||||||
|
public net.minecraft.world.level.chunk.ChunkStatus <init>(Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)V # constructor
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_157994_ # barrierNoise
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_157996_ # lavaNoise
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_157998_ # aquiferCache
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_157999_ # aquiferLocationCache
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158000_ # shouldScheduleFluidUpdate
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158002_ # minGridX
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158003_ # minGridY
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158004_ # minGridZ
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158005_ # gridSizeX
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158006_ # gridSizeZ
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158024_(II)D # similarity
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158027_(III)I # getIndex
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158039_(I)I # gridX
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158045_(I)I # gridY
|
||||||
|
protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158047_(I)I # gridZ
|
||||||
|
protected net.minecraft.world.level.levelgen.Beardifier f_158065_ # pieceIterator
|
||||||
|
protected net.minecraft.world.level.levelgen.Beardifier f_158066_ # junctionIterator
|
||||||
|
protected net.minecraft.world.level.levelgen.Beardifier m_158083_(III)D # getBuryContribution
|
||||||
|
protected net.minecraft.world.level.levelgen.Beardifier m_223925_(IIII)D # getBeardContribution
|
||||||
|
private-f net.minecraft.world.level.levelgen.DebugLevelSource f_64114_ # ALL_BLOCKS
|
||||||
|
private-f net.minecraft.world.level.levelgen.DebugLevelSource f_64115_ # GRID_WIDTH
|
||||||
|
private-f net.minecraft.world.level.levelgen.DebugLevelSource f_64116_ # GRID_HEIGHT
|
||||||
|
public-f net.minecraft.world.level.levelgen.NoiseBasedChunkGenerator
|
||||||
|
protected net.minecraft.world.level.levelgen.NoiseBasedChunkGenerator m_224239_(Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;IILorg/apache/commons/lang3/mutable/MutableObject;Ljava/util/function/Predicate;)Ljava/util/OptionalInt; # iterateNoiseColumn
|
||||||
|
#group public net.minecraft.world.level.levelgen.NoiseGeneratorSettings *()
|
||||||
|
public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255038_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # caves
|
||||||
|
public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255186_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # end
|
||||||
|
public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255226_(Lnet/minecraft/data/worldgen/BootstapContext;ZZ)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # overworld
|
||||||
|
public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255230_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # floatingIslands
|
||||||
|
public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255410_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # nether
|
||||||
|
public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_64474_(Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; # lambda$static$0
|
||||||
|
#endgroup
|
||||||
|
public net.minecraft.world.level.levelgen.feature.featuresize.FeatureSizeType <init>(Lcom/mojang/serialization/Codec;)V # constructor
|
||||||
|
public net.minecraft.world.level.levelgen.feature.foliageplacers.FoliagePlacerType <init>(Lcom/mojang/serialization/Codec;)V # constructor
|
||||||
|
public net.minecraft.world.level.levelgen.feature.rootplacers.RootPlacerType <init>(Lcom/mojang/serialization/Codec;)V # constructor
|
||||||
|
public net.minecraft.world.level.levelgen.feature.stateproviders.BlockStateProviderType <init>(Lcom/mojang/serialization/Codec;)V # constructor
|
||||||
|
public net.minecraft.world.level.levelgen.feature.treedecorators.TreeDecoratorType <init>(Lcom/mojang/serialization/Codec;)V # constructor
|
||||||
|
public net.minecraft.world.level.levelgen.feature.trunkplacers.TrunkPlacerType <init>(Lcom/mojang/serialization/Codec;)V # constructor
|
||||||
|
protected net.minecraft.world.level.portal.PortalForcer f_77648_ # level
|
||||||
|
public net.minecraft.world.level.storage.LevelResource <init>(Ljava/lang/String;)V # constructor
|
||||||
|
private-f net.minecraft.world.level.storage.loot.LootPool f_79028_ # rolls
|
||||||
|
private-f net.minecraft.world.level.storage.loot.LootPool f_79029_ # bonusRolls
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user