Thanks for the report, I forgot do declare the function at the top of the file. Now it should work.
https://mods.factorio.com/mods/gheift/g ... /downloads
Kind regards,
Gerhard
[MOD 0.15] Bluebuild rewritten
Re: [MOD 0.15] Bluebuild rewritten
The mod does not appear to be doing anything; I decon-planned some trees with no effect, even when standing still. Am I doing something wrong?
- 5thHorseman
- Smart Inserter
- Posts: 1193
- Joined: Fri Jun 10, 2016 11:21 pm
- Contact:
Re: [MOD 0.15] Bluebuild rewritten
You need to enable building with shift-K, and destroying with shift-L.Reika wrote:The mod does not appear to be doing anything; I decon-planned some trees with no effect, even when standing still. Am I doing something wrong?
It seems annoying now but it's important when you have roboports.
Re: [MOD 0.15] Bluebuild rewritten
This should be mentioned somewhere.5thHorseman wrote:You need to enable building with shift-K, and destroying with shift-L.Reika wrote:The mod does not appear to be doing anything; I decon-planned some trees with no effect, even when standing still. Am I doing something wrong?
It seems annoying now but it's important when you have roboports.
Also, can I make this persistent? It resets every time I reload.
- Ranakastrasz
- Smart Inserter
- Posts: 2171
- Joined: Thu Jun 12, 2014 3:05 am
- Contact:
Re: [MOD 0.15] Bluebuild rewritten
Not Multiplayer Compatible.
The mod does not work after saving and loading in multiplayer, giving an error.
Generally this is because of using OnLoad, but I cannot be certain. Its been a while.
The mod does not work after saving and loading in multiplayer, giving an error.
Generally this is because of using OnLoad, but I cannot be certain. Its been a while.
My Mods:
Modular Armor Revamp - V16
Large Chests - V16
Agent Orange - V16
Flare - V16
Easy Refineries - V16
Modular Armor Revamp - V16
Large Chests - V16
Agent Orange - V16
Flare - V16
Easy Refineries - V16
Re: [MOD 0.15] Bluebuild rewritten
Any plans of releasing a 0.16 version? The original bluebuild causes the UPS to drop beyond playable.
Re: [MOD 0.15] Bluebuild rewritten
I've patched bluebuild for 0.16 and fixed some bugs. One issue was a use of player as array index where player_index was mend.
The other is an assertion failure when removing items before reviving a ghost. Somehow items get left on the ground and are returned when reviving the ghost. Something the code asserts is not happening. It might be a problem with building enabled and deconstruction disabled, not sure.
I did two things there:
1) call surface.can_place_entity() before reviving the ghost. This adds another check weather placement is allowed at all. In the end I'm not sure this helps but I had it added first.
2) spill any items picked up from reviving the ghost on the ground around it It basically just pushes items around to make space if they can't be picked up for some reason. No more breaking a game because the assertion failed.
The next problem was that mining things would put them into the quickbar and quickbar only. Once that was full no more mining succeeded. I simplified the mining functions for that. There are player.mine_item/entity functions and I simply called them instead of all that code to handle mining.
If you're interested in patches let me know.
The other is an assertion failure when removing items before reviving a ghost. Somehow items get left on the ground and are returned when reviving the ghost. Something the code asserts is not happening. It might be a problem with building enabled and deconstruction disabled, not sure.
I did two things there:
1) call surface.can_place_entity() before reviving the ghost. This adds another check weather placement is allowed at all. In the end I'm not sure this helps but I had it added first.
2) spill any items picked up from reviving the ghost on the ground around it It basically just pushes items around to make space if they can't be picked up for some reason. No more breaking a game because the assertion failed.
The next problem was that mining things would put them into the quickbar and quickbar only. Once that was full no more mining succeeded. I simplified the mining functions for that. There are player.mine_item/entity functions and I simply called them instead of all that code to handle mining.
If you're interested in patches let me know.