aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/misc
AgeCommit message (Collapse)Author
2022-08-27Update buildscript & apply spotless (#1306)Raven Szewczyk
* Update dependencies * Update buildscript, apply spotless
2022-08-21IndiumBee (#1282)Runakai1
* IndiumBee Added Indiumbee * Bee change REduced chance to 2% added venus dim requirement * Updated Infinity Bee Infinity bee had a 100 chance divider which was unreasonably high considering its blocked from mutatron.
2022-08-15Overriding GUI colors with .mcmeta (#1261)Albi
* Implemented gui textcolor override with .mcmeta files * cleanup * Added shared class to reduce code duplication * Moved #drawLine back to GT_NEI_DefaultHandler
2022-08-13switch to gson (#1247)Glease
* switch to gson * json loader code cleanup
2022-08-12Added means of customizing GUI colors for resource packs (#1203)Albi
* Added means of customizing GUI colors through lang file * Color values are now stored in json file instead of the lang file * Made json only load upon resource reload and ensured server compatibility Co-authored-by: Martin Robertz <dream-master@gmx.net>
2022-08-12Updated the order of noble gas breeding to match proper rarity (#1242)Runakai1
* Updated the order of noble gas breeding to match proper rarity * Updated Order of second parent * Changed chance of Xenon bee to match decreased chances
2022-08-09fix(warnings): remove broad wanings suppression (#1223)Léa Gris
* fix(warnings): remove broad wanings suppression This shell script was applied to remove all instances of `@SuppressWarnings("ALL")`: ```sh grep -lr '@SuppressWarnings([[:space:]]*"ALL"[[:space:]]*)' src/ | xargs -l1 \ sed -n -i.bak '/@SuppressWarnings([[:space:]]*"ALL"[[:space:]]*)/!p' ``` * nuke @SuppressWarnings("all") in GT_NEI_DefaultHandler Case insensitive: ```sh grep -lr '@SuppressWarnings([[:space:]]*"[Aa][Ll][Ll]"[[:space:]]*)' src/ | xargs -l1 \ sed -n -i.bak '/@SuppressWarnings([[:space:]]*"[Aa][Ll][Ll]"[[:space:]]*)/!p' find src -type f -name '*.bak' -delete ``` * fix(warnings): GT_NEI_DefaultHandler * fix(warnings): GT_Mod * fix(warnings): GT_Values * fix(warnings): Materials * fix(warnings): GT_BeeDefinition * fix(warnings): GT_PostLoad * fix(warnings): GT_Worldgenloader * fix(warnings): GT_PreLoad
2022-07-31Bees balance changes (#1166)Runakai1
* Modified Bees and stuff, not yet ready * Added 4 bees, changed chances, changed fluid regulator Fluid regulators require a fluid detecor cover now to reduce conflicitng recipe conflicts Added Jaegermeister Bee as an endgame bee Added Sunnarium Bee Added Glowstone Bee Added Essentia Bee for future purposes (MagicBees) Reduced chances of combs, mistakenly too high * Updated bee chanes of a few Caelestis 4->10 Uranium 2->3 Plutonum 2-3 Naquadah 1->3 Thorium 2->3 Americium 3->5 Neutronium 1->2 * Recipe changes and one bee change Changed Circuit Number of fluid regulator changed mica bee foundation changed fluid extractor recipe * fixed iron comb producing meteoric iron instead of normal Co-authored-by: Martin Robertz <dream-master@gmx.net>
2021-12-11add Cryolite Bee and combs (#793)Martin Robertz
* add Cryolite Bee and combs * add Cryolite Block
2021-08-29create a MOD ID for Core ModDreamMasterXXL
change all Core mod items match with ID Add Soldering function to Material list put all Railcraft recipes from Core mot to GT
2021-08-12Add a spaceD-Cysteine
2021-08-12Fix some overlooked overridesD-Cysteine
2021-05-24feat(glow): iconset machines glow supportLéa Gris
- Add glow support for all sides and states of iconset machines (same as with basicmachines). Automated code cleanup with IDEA of: - Optiimise all imports (remove unused, sort) - Reorder all modifiers to the canonical preferred order (as stated in the Java Language Specification) - Add all missing @Override annotations
2021-05-21feat(render): implementation-free api texture factoryLéa Gris
Provides an implementation-free API Texture factory an builder. Deprecates gregtech.api.objects.GT_*Texture.java classes Once all GregTech add-on will be migrated to the new implemnetation-free API, changes to the implementation will not affect the add-on. For now, this API allow rendering of in-world glow textures. In-inventory/hand rendering of glow texture require implementation changes that are postponed until no add-on uses the deprecated embedded implementation API.
2021-05-21fix(render): move new textures rendering to new packageLéa Gris
Old textures rendering are kept in api/objects for backward compatibility. The old textures rendering does not handle glow textures or independant inventory tessellation. The old textures will only work with the old GT_Renderer_Block class New textures rendering with own tessellation in inventory and handling of glow emisssive textures are moved to the api/render package. These must not be used with the Old GT_Renderer_Block class or it will crash with: Already Tessellating Exception from the Tessellator class
2021-05-13Merge pull request #515 from GTNewHorizons/files_formatMartin Robertz
Normalize all repository files format
2021-05-08Fix name of americiumPrometheus0000
2021-04-27fix(textfiles): add missing neline at end of filesLéa Gris
git and diff tools will complain if text file does not end with a newline. Fixed all text files in the repository with Linux bash shell: ```sh git ls-files -z | while IFS= read -rd '' f; do mime="$(file --brief --mime "$f")"; if [ -z "${mime##text/*}" ]; then tail -c1 "$f" | read -r _ || printf '\n' >>"$f"; fi; done ```
2021-03-30Made it so that machine control covers disable themselves when thecharles
machine runs out of energy
2021-01-30Merge pull request #426 from KiloJoel/shadowmetalBeeFixMartin Robertz
added GT shadowmetal block, fixed bee crash from new TM
2021-01-29added GT shadowmetal block, no texture yetKiloJoel
2021-01-18Merge branch 'experimental' into mitchej123_cleanupMartin Robertz
2021-01-17More removal of commented out code, small formatting adjustmentsJason Mitchell
2021-01-17More removal of commented out code, small formatting adjustmentsJason Mitchell
2021-01-17Optionally hide assline recipes (defaults to false). Should have no impact ↵Jason Mitchell
on the ability to craft them.
2020-10-19Bee Definition Cleanup (#326)bartimaeusnek
* Bee Definition Cleanup Removed a Lot of boilerplate code, by using Consumers instead of Overrides Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> * Made Use of Static imports + use "Color" class for better IDE integration & readability + parameterised some Generics + reroute some Method overloads Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> * fixed an oversight Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> * fixed a typo Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2020-10-16Fix ganymede bee dropPrometheus0000
2020-05-13set hidden bees now to hidden. Before it wont workDreamMasterXXL
2020-05-13Add Fire Essense beeDreamMasterXXL
2020-05-12fix a few thingsDreamMasterXXL
2020-05-10finishing hee bees so farDreamMasterXXL
2020-05-10fix overseenDreamMasterXXL
2020-05-10add more hee beesDreamMasterXXL
2020-05-10more HEE bees and some fixesDreamMasterXXL
2020-05-10Start to add new HEE Bees for Ender Dust, Ectoplasma and Arcane ShardsDreamMasterXXL
2020-03-12Revert "Revert "changing a bit bees allele""Dream-Master
This reverts commit 66ee3db890370b1a7843691eef2897931219cfb1.
2020-03-08Revert "changing a bit bees allele"Dream-Master
This reverts commit 48ed31d7b7122b71cb6d37ccc81e6a4f4a33c9c5.
2020-03-08changing a bit bees alleleDream-Master
2020-02-15removed unused importsDream-Master
changed subversion to 33
2019-12-23Removed hard dep on AE2bartimaeusnek
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2019-11-09Cannot breed Certus and Fluix Bees #5096Dream-Master
https://github.com/GTNewHorizons/NewHorizons/issues/5096
2019-09-20fixed bee stuff with geneticsbartimaeusnek
+added mica crop +code improvements Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2019-06-04#4644Richard Hendricks
2019-05-24Added HP Solar Steam Boilerbartimaeusnek
+added recipe +removed unnessecary ", new Object[0]" for vargars methodes Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2019-04-22rerouted forestry modid to the config value to prevent typosbartimaeusnek
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2019-03-19salt bees equal to lithium bees #4285Dream-Master
https://github.com/GTNewHorizons/NewHorizons/issues/4285
2018-10-05Pyrotheum and Cryotheum beesDream-Master
2018-10-05add more requieremts for new beesDream-Master
2018-10-05Add new beesDream-Master
Apatite, Ash and Fertilizer
2018-10-05fix bee localizerDream-Master