How to make this go away

Place to get help with not working mods / modding interface.
Neomore
Inserter
Inserter
Posts: 47
Joined: Sun Jun 21, 2015 5:42 pm
Contact:

How to make this go away

Post by Neomore »

Hello, all. I finished work on the first release of a mod i've been updating and changing. I managed to get everything working properly, except for one problem.

Every time I load the mod, all the items (including the base game items) all show that they are affected by my mod, and display that they are part of base--> advanced-base. Is there any way to make this go away? Is it due to the fact that the mod is named advanced base, and so Factorio is reading that as something that overhalls the entire base game?

Let me know what I can do to make this go away. Any help is appreciated.
Attachments
Advanced-Base_0.1.0.zip
(39.77 KiB) Downloaded 98 times
Author of Advanced Factorio, a set of mods that add small bits of Advanced functionality to your gameplay

Check it out here: https://mods.factorio.com/user/neomore
User avatar
DaveMcW
Smart Inserter
Smart Inserter
Posts: 3749
Joined: Tue May 13, 2014 11:06 am
Contact:

Re: How to make this go away

Post by DaveMcW »

Well, the obvious thing to try is rename your mod...
Neomore
Inserter
Inserter
Posts: 47
Joined: Sun Jun 21, 2015 5:42 pm
Contact:

Re: How to make this go away

Post by Neomore »

No change after renaming the mod.
Author of Advanced Factorio, a set of mods that add small bits of Advanced functionality to your gameplay

Check it out here: https://mods.factorio.com/user/neomore
Nexela
Smart Inserter
Smart Inserter
Posts: 1828
Joined: Wed May 25, 2016 11:09 am
Contact:

Re: How to make this go away

Post by Nexela »

I am no expert on factorio or lua but as a guess....

Code: Select all

for name,list in pairs(data.raw) do
	for index,item in pairs(list) do
		if item.stack_size ~= nil then
			item.default_request_amount = defaultAmount
		end
	end
end
Looks like it is changing almost everything in the game and since your mod modded it it factorio is displaying it as such


When you see base--> advanced-base. it is telling you that it was created in base and modified by advanced-base

If you crated an item in advanced-base and some other mod changed that item it would show as
advanced-base --> Othermod
Neomore
Inserter
Inserter
Posts: 47
Joined: Sun Jun 21, 2015 5:42 pm
Contact:

Re: How to make this go away

Post by Neomore »

That fixed it. Thanks for the help :)
Author of Advanced Factorio, a set of mods that add small bits of Advanced functionality to your gameplay

Check it out here: https://mods.factorio.com/user/neomore
Post Reply

Return to “Modding help”