[0.17] Please post bugs and balance issues here.
Moderator: bobingabout
-
- Inserter
- Posts: 47
- Joined: Mon Apr 27, 2015 3:39 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
I'm not seeing any effect from the classes?
Just started as a Miner and am unable to hand-smelt ores.
Just started as a Miner and am unable to hand-smelt ores.
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
Thank you for the report. it looks like while I was trying to get the "don't show the GUI in the map editor" thing set up, which wasn't working at the time, during my "Well, it shouldn't crash when you pick a class, even in this mode", I kinda added a check to see if a variable that didn't exist was nil, to not replace the character if it is nil, and, well, since it's a variable that never exists, it's always going to be nil, so it never replaces the class.Foxy_Boxes wrote: ↑Sat Mar 16, 2019 2:59 pm I'm not seeing any effect from the classes?
Just started as a Miner and am unable to hand-smelt ores.
-
- Inserter
- Posts: 33
- Joined: Sat Mar 26, 2016 3:47 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
We're right in the middle of the game with all (?) Bob's mods (plus a few more) active. Actually the biters don't attack anymore. One week ago before the pollution update the game worked quiet good, but now about all biters stand still in their bases. Only a few attacks with little groups are seen here and there, but way less than 10 % from before.
Can anyone confirm that strange biter behaviour?
Can anyone confirm that strange biter behaviour?
- BlueTemplar
- Smart Inserter
- Posts: 3145
- Joined: Fri Jun 08, 2018 2:16 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
Does your pollution still reach the spawners ?
BobDiggity (mod-scenario-pack)
Re: [0.17] Please post bugs and balance issues here.
Open the new pollution graph and check if any of the spawners are consuming pollution. If they are and there are no attacks then something might be bugged - that would be more on base game side then mod side. Mod only defines what biters should spawn from given spawner rest of the logic is in base game.TheRealBecks wrote: ↑Sat Mar 16, 2019 7:38 pm We're right in the middle of the game with all (?) Bob's mods (plus a few more) active. Actually the biters don't attack anymore. One week ago before the pollution update the game worked quiet good, but now about all biters stand still in their bases. Only a few attacks with little groups are seen here and there, but way less than 10 % from before.
Can anyone confirm that strange biter behaviour?
-
- Inserter
- Posts: 33
- Joined: Sat Mar 26, 2016 3:47 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
Yeah, pollution is still consumed by biter nests. See the attached screenshots...
Pollution in the last 10 h: Kills in the last 10 h: ...and kills in the last 1 h: So, as everyone can see, it's not working correctly.
Edit:
I wanted to file a bug reported, but someone already did. So it seems to be a general bug: viewtopic.php?f=7&t=67861
Pollution in the last 10 h: Kills in the last 10 h: ...and kills in the last 1 h: So, as everyone can see, it's not working correctly.
Edit:
I wanted to file a bug reported, but someone already did. So it seems to be a general bug: viewtopic.php?f=7&t=67861
Re: [0.17] Please post bugs and balance issues here.
Hello. I am working on modifying the Xander mod under version 17 and I discovered a problem with ore generation. I decided to check your mod, and your mod has the same problem. Some ores spawn at the same point, it can be clearly seen in the picture. Is this a flaw in our code or is it a bug report?
IMG
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
it is a known issue with the new ore spawning system. It uses a system to prevent ores from stacking on top of each other, but that system is dependant on knowning how many ores are available before it begins. these values are hard set to 4 (starting area) and 6 (total), exactly what the base game has. so when you go over that number, like when mods add new ores and use the same system, you get these errors._npo6ka_ wrote: ↑Mon Mar 18, 2019 9:56 pm Hello. I am working on modifying the Xander mod under version 17 and I discovered a problem with ore generation. I decided to check your mod, and your mod has the same problem. Some ores spawn at the same point, it can be clearly seen in the picture. Is this a flaw in our code or is it a bug report?
IMG
I have been considering a modding fix, which involves copying the base game function into my library, an editing it to not be dumb, but that would only work if everyone who wanted to use that new system then used my library mod.
You're probably best sticking with RSO.
Re: [0.17] Please post bugs and balance issues here.
You have access to the code base. You could write a fix for the base game function and submit it to the devs to be integrated into the next release.bobingabout wrote: ↑Tue Mar 19, 2019 8:11 am I have been considering a modding fix, which involves copying the base game function into my library, an editing it to not be dumb, but that would only work if everyone who wanted to use that new system then used my library mod.
- BlueTemplar
- Smart Inserter
- Posts: 3145
- Joined: Fri Jun 08, 2018 2:16 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
BobDiggity (mod-scenario-pack)
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
Yeah, a "Fix" isn't what it needs, it needs a rewrite:ukezi wrote: ↑Tue Mar 19, 2019 2:14 pmYou have access to the code base. You could write a fix for the base game function and submit it to the devs to be integrated into the next release.bobingabout wrote: ↑Tue Mar 19, 2019 8:11 am I have been considering a modding fix, which involves copying the base game function into my library, an editing it to not be dumb, but that would only work if everyone who wanted to use that new system then used my library mod.
-
- Filter Inserter
- Posts: 362
- Joined: Mon Aug 01, 2016 2:38 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
What does RSO (with bob's ores) provide in this case compared to vanilla (with bob's ores)?bobingabout wrote: ↑Tue Mar 19, 2019 8:11 amit is a known issue with the new ore spawning system. It uses a system to prevent ores from stacking on top of each other, but that system is dependant on knowning how many ores are available before it begins. these values are hard set to 4 (starting area) and 6 (total), exactly what the base game has. so when you go over that number, like when mods add new ores and use the same system, you get these errors._npo6ka_ wrote: ↑Mon Mar 18, 2019 9:56 pm Hello. I am working on modifying the Xander mod under version 17 and I discovered a problem with ore generation. I decided to check your mod, and your mod has the same problem. Some ores spawn at the same point, it can be clearly seen in the picture. Is this a flaw in our code or is it a bug report?
IMG
I have been considering a modding fix, which involves copying the base game function into my library, an editing it to not be dumb, but that would only work if everyone who wanted to use that new system then used my library mod.
You're probably best sticking with RSO.
Re: [0.17] Please post bugs and balance issues here.
It provides the same as RSO with vanilla: more sparse resources with guaranteed starting area resources.RocketManChronicles wrote: ↑Tue Mar 19, 2019 7:46 pmWhat does RSO (with bob's ores) provide in this case compared to vanilla (with bob's ores)?
When used with bob's ores it has the benefit of having it's own resource generation system that actually tries to make sure ores do not overlap.
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
Basically... Something that actually works.orzelek wrote: ↑Tue Mar 19, 2019 8:42 pmIt provides the same as RSO with vanilla: more sparse resources with guaranteed starting area resources.RocketManChronicles wrote: ↑Tue Mar 19, 2019 7:46 pmWhat does RSO (with bob's ores) provide in this case compared to vanilla (with bob's ores)?
When used with bob's ores it has the benefit of having it's own resource generation system that actually tries to make sure ores do not overlap.
Re: [0.17] Please post bugs and balance issues here.
Hey Bob, wanted to crosspost this here. Don't think it's either person's fault directly, just an unforeseen collision.
https://github.com/McGuten/5DimsFactorioMods/issues/89
https://github.com/McGuten/5DimsFactorioMods/issues/89
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
I know exactly what the issue is.Recon419A wrote: ↑Thu Mar 21, 2019 4:38 am Hey Bob, wanted to crosspost this here. Don't think it's either person's fault directly, just an unforeseen collision.
https://github.com/McGuten/5DimsFactorioMods/issues/89
next_update is a tag entities have to tell the update planner what the defaults are if you don't set a manual configuration.
Since bobassembly adds furnaces up to MK4, there's a clear progression chain of Electric Furnace -> MK2 -> MK3 -> MK4, so I use next_update to assign that.
5Dim then changes the fast replace group of the Electric Furnace to "electric-furnace", perhaps because he adds his own furnaces, which causes mine to no longer be in the fast replace group, breaking the chain.
To be honest, since you can only fast replace an entity with another of the same size (Unless they changed things without me realising, You can replace belt and splitter with each other now, and they're not the same size), changing the group would be pointless because stone/steel furnaces can't be fast replace with electric furnace anyway.
Either way, it is something I could possibly fix, by applying the "electric-furnace" fast replace to all my 3x3 electric furnaces, including Chemical and Mixing furnaces. (7 in total if you include the base game electric furnace, chemical and mixing from bobplates, then the 3 tiers added to furnace in assembly, and the 2 tiers of chemical-mixing furnace)
But to be honest, it's not really a change I WANT to make, because then it could break the fast replace groups of other mods that add an electric furnace with fast replace group "furnace", as is default.
-
- Manual Inserter
- Posts: 1
- Joined: Sun Dec 17, 2017 8:07 am
- Contact:
Re: [0.17] Please post bugs and balance issues here.
Hey Bob: I was giving your mods a shot, and was frustrated that the reach seems to be so much less than what I'm now used to in 0.17. After investigating (weirdly, I couldn't find anyone complaining about this already), I found that the values in the "character classes" mod (https://mods.factorio.com/mod/bobclasses) are still based off of the 0.16 reach value of 6. 83.33% and 133% of 6 are 5 and 8 respectively.
I believe the values in "player.lua" should be updated to be relative to 0.17's default reach value of 10 ("build_distance" and "reach_distance"), otherwise all three player classes have a considerable disadvantage over the "vanilla class".
I believe the values in "player.lua" should be updated to be relative to 0.17's default reach value of 10 ("build_distance" and "reach_distance"), otherwise all three player classes have a considerable disadvantage over the "vanilla class".
-
- Long Handed Inserter
- Posts: 66
- Joined: Thu Jun 01, 2017 6:52 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
I think it would make more sense for them to be calculated instead of explicitly set to specific values.ChaoticMind wrote: ↑Thu Mar 21, 2019 6:31 pm Hey Bob: I was giving your mods a shot, and was frustrated that the reach seems to be so much less than what I'm now used to in 0.17. After investigating (weirdly, I couldn't find anyone complaining about this already), I found that the values in the "character classes" mod (https://mods.factorio.com/mod/bobclasses) are still based off of the 0.16 reach value of 6. 83.33% and 133% of 6 are 5 and 8 respectively.
I believe the values in "player.lua" should be updated to be relative to 0.17's default reach value of 10 ("build_distance" and "reach_distance"), otherwise all three player classes have a considerable disadvantage over the "vanilla class".
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.17] Please post bugs and balance issues here.
Perhaps. that's actually not a bad idea.MageKing17 wrote: ↑Fri Mar 22, 2019 4:17 pmI think it would make more sense for them to be calculated instead of explicitly set to specific values.ChaoticMind wrote: ↑Thu Mar 21, 2019 6:31 pm Hey Bob: I was giving your mods a shot, and was frustrated that the reach seems to be so much less than what I'm now used to in 0.17. After investigating (weirdly, I couldn't find anyone complaining about this already), I found that the values in the "character classes" mod (https://mods.factorio.com/mod/bobclasses) are still based off of the 0.16 reach value of 6. 83.33% and 133% of 6 are 5 and 8 respectively.
I believe the values in "player.lua" should be updated to be relative to 0.17's default reach value of 10 ("build_distance" and "reach_distance"), otherwise all three player classes have a considerable disadvantage over the "vanilla class".
Re: [0.17] Please post bugs and balance issues here.
After finishing Chemical Processing 2 research the game crashed
- Attachments
-
- factorio-current.log
- The log
- (46.51 KiB) Downloaded 97 times
-
- AB.zip
- The save just before the crash
- (6.36 MiB) Downloaded 87 times