Page 1 of 1
Bobplates Tin Masher 5dim incopatibility
Posted: Thu Mar 31, 2016 12:01 am
by IG2
Hello Guys!
I just startet using the Bob-Modpack and ran into a Problem:
I am not able to build a standard Masher besaue of some small Tinplate incompatibility. I habe Tin plates markes as "bobplates" but it seems like i my Masher doesnt want those plates. I can also find other Tin plates from 5dim_ores. Is it possible to "convert" those or to get rid of the incompatibility?
Edit: Both kinds of plates show the same way of production.
Edit2: Deactivation of 5dim_ores made it possible to craft the Masher but i couldnt mash Tin anymore. After reactivating it, o hade two different types of Tin Plates.
Thanks in advance!
PS: Sorry for my english XD
Re: Bobplates Tin Masher 5dim incopatibility
Posted: Thu Mar 31, 2016 1:12 am
by bobingabout
The issue with the tin plates is a 5dim's error, He's looking into it apparantly.
The masher isn't one of my things either, so, I assume another 5dim error?
Re: Bobplates Tin Masher 5dim incopatibility
Posted: Thu Mar 31, 2016 6:04 am
by IG2
OK, thanks.
But is it possible to reduce those 2 items to only one like with ores, which are working fine?
Re: Bobplates Tin Masher 5dim incopatibility
Posted: Thu Mar 31, 2016 6:44 am
by IG2
It seems I solved the bug by replacing every "5d_tin_plate" inside the Mods folder by "tin_plate" like it is used in your Mods.
Re: Bobplates Tin Masher 5dim incopatibility
Posted: Fri Apr 01, 2016 2:58 am
by bobingabout
I think he said he was going to fix it himself in the near future.
Re: Bobplates Tin Masher 5dim incopatibility
Posted: Mon Apr 11, 2016 8:12 am
by aqmery
Which config files do i need to change to get this working, or can some one post the edited file so people can download it?
Re: Bobplates Tin Masher 5dim incopatibility
Posted: Mon Apr 11, 2016 8:32 am
by bobingabout
I think IG2 basically modded 5dim himself to fix the error.
This is an error in 5dim though, you really should be poking him for a fix.
Re: Bobplates Tin Masher 5dim incopatibility
Posted: Thu Apr 14, 2016 7:18 pm
by Godred
Hey IG2 can you post a walkthrough on which mod folders you editted to make this work? This is like a huge stopping point for me since I really want those Electric Mk 2 Smelters but can't because of this issue. Crafting spd 3 would be great for my build. Less reliant on coal
Re: Bobplates Tin Masher 5dim incopatibility
Posted: Sat Apr 16, 2016 1:39 am
by ncc1702
I created a snippet of code you can add to bobplates_x.xx.xx/prototypes/recipe/plates-recipe.lua or to 5dim_ores_x.x.x/prototypes/tin-ore.lua that will enable you to convert from 5dim's plates to Bob's Plates using a smelter.
Code: Select all
{
type = "recipe",
name = "tin-plate-convert",
category = "smelting",
subgroup = "bob-material-smelting",
energy_required = 0.5,
ingredients = {{"5d-tin-plate", 1}},
result = "tin-plate"
},
Alternativly I'd assume if you wanted to convert the other way you could add it as
Code: Select all
{
type = "recipe",
name = "tin-plate-convert",
category = "smelting",
subgroup = "bob-material-smelting",
energy_required = 0.5,
ingredients = {{"tin-plate", 1}},
result = "5d-tin-plate"
},
Re: Bobplates Tin Masher 5dim incopatibility
Posted: Sun Apr 17, 2016 10:29 pm
by Godred
ncc1702 wrote:I created a snippet of code you can add to bobplates_x.xx.xx/prototypes/recipe/plates-recipe.lua or to 5dim_ores_x.x.x/prototypes/tin-ore.lua that will enable you to convert from 5dim's plates to Bob's Plates using a smelter.
Code: Select all
{
type = "recipe",
name = "tin-plate-convert",
category = "smelting",
subgroup = "bob-material-smelting",
energy_required = 0.5,
ingredients = {{"5d-tin-plate", 1}},
result = "tin-plate"
},
Alternativly I'd assume if you wanted to convert the other way you could add it as
Code: Select all
{
type = "recipe",
name = "tin-plate-convert",
category = "smelting",
subgroup = "bob-material-smelting",
energy_required = 0.5,
ingredients = {{"tin-plate", 1}},
result = "5d-tin-plate"
},
Thank you! Works like a charm. Also works on multiplayer, now I can bask in the glory of 5.4 crafting speed with rank 1 raw speed modules.