diff options
author | DreamMasterXXL <dream-master@gmx.net> | 2020-04-25 22:11:21 +0200 |
---|---|---|
committer | DreamMasterXXL <dream-master@gmx.net> | 2020-04-25 22:11:21 +0200 |
commit | da59e07ddb74d965927261d83135418e49967609 (patch) | |
tree | 1ecaa64bd2fd05454a8647540d11257235afa997 /src | |
parent | 5f3549708b5b9b407bf9bdba49ef4a6238d4a852 (diff) | |
download | GT5-Unofficial-da59e07ddb74d965927261d83135418e49967609.tar.gz GT5-Unofficial-da59e07ddb74d965927261d83135418e49967609.tar.bz2 GT5-Unofficial-da59e07ddb74d965927261d83135418e49967609.zip |
changed colors a bit
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/detrav/utils/FluidColors.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/com/detrav/utils/FluidColors.java b/src/main/java/com/detrav/utils/FluidColors.java index 00cf66627b..bf9d6169e3 100644 --- a/src/main/java/com/detrav/utils/FluidColors.java +++ b/src/main/java/com/detrav/utils/FluidColors.java @@ -60,22 +60,22 @@ public class FluidColors { fluidColors.put(Materials.Ethylene.mGas.getID(), new short[]{0xd0, 0xd0, 0xd0}); fluidColors.put(FluidRegistry.LAVA.getID(), new short[]{0xFF, 0x00, 0x00}); fluidColors.put(FluidRegistry.getFluid("unknowwater").getID(), new short[]{0x8A, 0x2B, 0xE2}); - fluidColors.put(Materials.Hydrogen.mGas.getID(), new short[]{0xF0, 0xF8, 0xFF}); - fluidColors.put(Materials.SulfuricAcid.mFluid.getID(), new short[]{0xFF, 0xB9, 0x0F});//Venus - fluidColors.put(Materials.HydricSulfide.mFluid.getID(), new short[]{0xFF, 0x8C, 0x00});//Uranus - fluidColors.put(Materials.CarbonMonoxide.mGas.getID(), new short[]{0x10, 0x4E, 0x8B});//Venus - fluidColors.put(Materials.CarbonDioxide.mGas.getID(), new short[]{0x69, 0x69, 0x69});//Venus + fluidColors.put(Materials.Hydrogen.mGas.getID(), new short[]{0x32, 0x32, 0xD6}); + fluidColors.put(Materials.SulfuricAcid.mFluid.getID(), new short[]{0xFF, 0xB9, 0x0F}); + fluidColors.put(Materials.HydricSulfide.mFluid.getID(), new short[]{0xFF, 0x8F, 0x43}); + fluidColors.put(Materials.CarbonMonoxide.mGas.getID(), new short[]{0x10, 0x4E, 0x8B}); + fluidColors.put(Materials.CarbonDioxide.mGas.getID(), new short[]{0x69, 0x69, 0x69}); fluidColors.put(FluidRegistry.getFluid("ic2distilledwater").getID(), new short[]{0x1E, 0x90, 0xFF}); fluidColors.put(Materials.Deuterium.mGas.getID(), new short[]{0xFF, 0xE3, 0x9F}); fluidColors.put(Materials.Iron.getMolten(0).getFluid().getID(), new short[]{0x8B, 0x88, 0x78}); fluidColors.put(Materials.Tin.getMolten(0).getFluid().getID(), new short[]{0xE7, 0xE7, 0xE4}); fluidColors.put(Materials.Copper.getMolten(0).getFluid().getID(), new short[]{0xFF, 0x7F, 0x24}); - fluidColors.put(FluidRegistry.getFluid("fluorine").getID(), new short[]{0x99, 0xFF, 0xFF}); + fluidColors.put(FluidRegistry.getFluid("fluorine").getID(), new short[]{0x99, 0xC1, 0xAD}); fluidColors.put(FluidRegistry.getFluid("hydrofluoricacid_gt5u").getID(), new short[]{0x00, 0xCE, 0xD1}); fluidColors.put(FluidRegistry.getFluid("phosphoricacid_gt5u").getID(), new short[]{0xEE, 0x76, 0x00}); //possible nulls - fluidColors.put(Materials.LiquidAir.mFluid.getID(), new short[]{0x40, 0x80, 0x40}); + fluidColors.put(Materials.LiquidAir.mFluid.getID(), new short[]{0x99, 0x99, 0xEA}); }catch (Exception ignored){} /* Set set = fluidColors.entrySet(); |