diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2024-08-21 22:09:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-21 21:09:31 +0000 |
commit | 4baa0d970bac9bcfb645e02f0acd274f13a8c18f (patch) | |
tree | a4e12515e2848e6990e065e1b2c9e4811801f1b7 /src/main/java/gregtech/api/enums | |
parent | f55e797f37942f3b7c50c212ea211bda7d1a76fe (diff) | |
download | GT5-Unofficial-4baa0d970bac9bcfb645e02f0acd274f13a8c18f.tar.gz GT5-Unofficial-4baa0d970bac9bcfb645e02f0acd274f13a8c18f.tar.bz2 GT5-Unofficial-4baa0d970bac9bcfb645e02f0acd274f13a8c18f.zip |
Update documentation of mte id ranges (#2936)
* update documentation of id ranges
* fix order
* fix java flag
Diffstat (limited to 'src/main/java/gregtech/api/enums')
-rw-r--r-- | src/main/java/gregtech/api/enums/MetaTileEntityIDs.java | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/src/main/java/gregtech/api/enums/MetaTileEntityIDs.java b/src/main/java/gregtech/api/enums/MetaTileEntityIDs.java index 464a8b2710..d55d433e36 100644 --- a/src/main/java/gregtech/api/enums/MetaTileEntityIDs.java +++ b/src/main/java/gregtech/api/enums/MetaTileEntityIDs.java @@ -1,10 +1,22 @@ package gregtech.api.enums; -/* +/** + * An enum for all registered MetaTileEntities. * No more magic numbers about TE's IDs. Yay!!! * The entries are sorted by ID, so if you need to take one, * please, pretty please, insert it at the correct place. + * <p/> + * This does not list all used IDs. If you are looking for + * a free ID, you can use the java arg `-Dgt.debug=true` to + * list all that are in use. + * <p/> + * Additionally, some ID ranges are blocked for automatic + * generation, do not use these: + * <p/> + * 4096 - 5095 are used for GregTech Frames. + * 5096 - 6099 are used for GregTech Pipes. */ + public enum MetaTileEntityIDs { HULL_BRONZE(1), @@ -1301,15 +1313,15 @@ public enum MetaTileEntityIDs { lsc(13106), tfftHatch(13109), WORMHOLE_GENERATOR_CONTROLLER(13115), + MegaChemicalReactor(13366), + MegaOilCracker(13367), + ExtremeEntityCrusherController(14201), + ExtremeIndustrialApiaryController(14202), BETTER_JUKEBOX_LV(14301), BETTER_JUKEBOX_MV(14302), BETTER_JUKEBOX_HV(14303), BETTER_JUKEBOX_EV(14304), BETTER_JUKEBOX_IV(14305), - MegaChemicalReactor(13366), - MegaOilCracker(13367), - ExtremeEntityCrusherController(14201), - ExtremeIndustrialApiaryController(14202), EV4AWirelessEnergyHatch(15065), EV16AWirelessEnergyHatch(15066), EV64AWirelessEnergyHatch(15067), |