hiatus but not b4 upd8ing rad obj
This commit is contained in:
parent
02f897e1cd
commit
55b8eb04df
|
|
@ -1229,6 +1229,7 @@ Proper classification of limestone within these code comments
|
||||||
|
|
||||||
radioactiveObject = {
|
radioactiveObject = {
|
||||||
dirt: "radioactive_dirt",
|
dirt: "radioactive_dirt",
|
||||||
|
dry_dirt: "radioactive_dry_dirt",
|
||||||
molten_dirt: "molten_radioactive_dirt",
|
molten_dirt: "molten_radioactive_dirt",
|
||||||
glass: "radioactive_glass",
|
glass: "radioactive_glass",
|
||||||
molten_glass: "molten_radioactive_glass",
|
molten_glass: "molten_radioactive_glass",
|
||||||
|
|
@ -1238,6 +1239,7 @@ Proper classification of limestone within these code comments
|
||||||
wet_sand: "radioactive_wet_sand",
|
wet_sand: "radioactive_wet_sand",
|
||||||
water: "radioactive_water",
|
water: "radioactive_water",
|
||||||
permafrost: "radioactive_permafrost",
|
permafrost: "radioactive_permafrost",
|
||||||
|
dry_permafrost: "radioactive_dry_permafrost",
|
||||||
mudstone: "radioactive_mudstone",
|
mudstone: "radioactive_mudstone",
|
||||||
packed_sand: "radioactive_packed_sand",
|
packed_sand: "radioactive_packed_sand",
|
||||||
ice: "radioactive_ice",
|
ice: "radioactive_ice",
|
||||||
|
|
@ -1254,6 +1256,21 @@ Proper classification of limestone within these code comments
|
||||||
sand_sediment: "radioactive_sand_sediment"
|
sand_sediment: "radioactive_sand_sediment"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if(enabledMods.includes("mods/glenn_gases.js")) {
|
||||||
|
radioactiveObject.rock_dust = "radioactive_rock_dust";
|
||||||
|
};
|
||||||
|
|
||||||
|
if(enabledMods.includes("mods/fire_mod.js")) {
|
||||||
|
radioactiveObject.fire = "rad_fire";
|
||||||
|
radioactiveObject.torch = "rad_torch";
|
||||||
|
};
|
||||||
|
|
||||||
|
if(enabledMods.includes("mods/structure_test.js")) {
|
||||||
|
radioactiveObject.glass = "rad_glass";
|
||||||
|
radioactiveObject.glass_pane = "rad_glass_pane";
|
||||||
|
radioactiveObject.glass_shard = "rad_glass_shard";
|
||||||
|
};
|
||||||
|
|
||||||
//Reverse lookup function
|
//Reverse lookup function
|
||||||
|
|
||||||
function getKeyByValue(object, value) {
|
function getKeyByValue(object, value) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue