mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Fix dev build numbering, add update notes
Add newline in AssemblyInfo to fix dev build number in exe (#456) Add remarks on how to implement newer MC versions (from #145, #599)
This commit is contained in:
parent
9841156130
commit
5f83ff0958
6 changed files with 29 additions and 5 deletions
|
|
@ -4,7 +4,13 @@
|
|||
/// Represents Minecraft Materials
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Generated from blocks.json using PaletteGenerator.cs
|
||||
/// Generated from blocks.json using PaletteGenerator.cs.
|
||||
/// Typical steps to handle new blocks for newer Minecraft versions:
|
||||
/// 1. Generate blocks.json using data reporting on Vanilla Minecraft (https://wiki.vg/Data_Generators)
|
||||
/// 2. Generate temporary MaterialXXX.cs and PaletteXXX.cs using PaletteGenerator.cs
|
||||
/// 3. Perform a diff with existing versions, add missing entries in Material.cs and MaterialExtensions.cs
|
||||
/// 4. If existing state IDs were not randomized by Mojang, simply add missing state entries to Palette113.cs
|
||||
/// 5. If existing state IDs were randomized, add a new palette as PaletteXXX.cs into the codebase (worst case)
|
||||
/// </remarks>
|
||||
public enum Material
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue