Bobplates Tin Masher 5dim incopatibility
Moderator: bobingabout
Bobplates Tin Masher 5dim incopatibility
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
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
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: Bobplates Tin Masher 5dim incopatibility
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?
The masher isn't one of my things either, so, I assume another 5dim error?
Re: Bobplates Tin Masher 5dim incopatibility
OK, thanks.
But is it possible to reduce those 2 items to only one like with ores, which are working fine?
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
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.
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: Bobplates Tin Masher 5dim incopatibility
I think he said he was going to fix it himself in the near future.
Re: Bobplates Tin Masher 5dim incopatibility
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?
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: Bobplates Tin Masher 5dim incopatibility
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.
This is an error in 5dim though, you really should be poking him for a fix.
Re: Bobplates Tin Masher 5dim incopatibility
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
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.
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 = {{"5d-tin-plate", 1}},
result = "tin-plate"
},
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
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.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.Alternativly I'd assume if you wanted to convert the other way you could add it asCode: 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" },
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" },