It got pointed out to me by someone else on the multiplayer server that there other checkboxes that don't update the last user, e.g. trash unrequested.
I wouldn't call _that_ much of a bug, if anything i can understand its intended behavior since trashing unrequested seems insignificant, but for ...
Search found 227 matches
- Wed May 14, 2025 11:53 am
- Forum: Resolved Problems and Bugs
- Topic: [2.0.49] rocket silo's last_user not updating when toggling transitional requests
- Replies: 2
- Views: 1098
- Wed May 14, 2025 11:50 am
- Forum: Not a bug
- Topic: [2.0.49] hard crash to desktop when creating & raising entity in entity created events
- Replies: 4
- Views: 421
[2.0.49] hard crash to desktop when creating & raising entity in entity created events
Ran into this whilst developing my space debris mod (tried to spawn extra asteroids when there was excessive trash), boiled it down to just this code example:
script.on_event({defines.events.on_built_entity, defines.events.script_raised_built}, function(event)
local entity = event.entity ...
script.on_event({defines.events.on_built_entity, defines.events.script_raised_built}, function(event)
local entity = event.entity ...
- Wed May 14, 2025 7:02 am
- Forum: Resolved Problems and Bugs
- Topic: [2.0.49] rocket silo's last_user not updating when toggling transitional requests
- Replies: 2
- Views: 1098
[2.0.49] rocket silo's last_user not updating when toggling transitional requests
expected behavior: when you touch that checkbox you become the new last_user of that rocket silo.
- Mon May 12, 2025 6:58 pm
- Forum: Resolved Problems and Bugs
- Topic: [Genhis][2.0.48] ctrl inserting ghost modules downgrades higher modules
- Replies: 1
- Views: 535
[Genhis][2.0.48] ctrl inserting ghost modules downgrades higher modules
- place a silo
- insert blue quality prod 2 modules
- go into remote view
- control click green quality prod 2 modules
- notice the insert plan wanting to downgrade them all
expected behavior: modules do not downgrade, just like shift insert respects.
- insert blue quality prod 2 modules
- go into remote view
- control click green quality prod 2 modules
- notice the insert plan wanting to downgrade them all
expected behavior: modules do not downgrade, just like shift insert respects.
- Mon May 12, 2025 6:25 pm
- Forum: Assigned
- Topic: [Pard] [2.0.47] item marked as hidden doesn't show under ingredients
- Replies: 2
- Views: 304
Re: [Pard] [2.0.47] item marked as hidden doesn't show under ingredients
The "practical example" would likely be where i originally noticed it, Krastorio 2 has a hidden logo recipe that gets revealed only when you activate the intergalactic transciever and one of the items in the recipe is like a lump of mud but factoriopedia doesn't show that under the ingredients for ...
- Fri May 09, 2025 7:34 pm
- Forum: Assigned
- Topic: [Pard] [2.0.47] item marked as hidden doesn't show under ingredients
- Replies: 2
- Views: 304
[Pard] [2.0.47] item marked as hidden doesn't show under ingredients
data.raw["item"]["iron-gear-wheel"].hidden = true
Whilst prototypes marked as hidden are obviously hidden from factoriopedia, i feel like it shouldn't apply to a recipe's ingredients since it'd just be wrong:
Whilst prototypes marked as hidden are obviously hidden from factoriopedia, i feel like it shouldn't apply to a recipe's ingredients since it'd just be wrong:
- Fri May 09, 2025 1:20 pm
- Forum: Resolved Requests
- Topic: upgrade planner's get_mapper()'s to can return nil
- Replies: 4
- Views: 546
Re: upgrade planner's get_mapper()'s to can return nil
well it makes sense in the way that the slot is reserved and there isn't a nil gap, like empty logistic filters in a section return {} and not nil too, which way belongs where is very much just in the eye of the devs :D
There's probably a technical reason here why the source needs to be set to ...
There's probably a technical reason here why the source needs to be set to ...
- Thu May 08, 2025 11:57 am
- Forum: Resolved Requests
- Topic: upgrade planner's get_mapper()'s to can return nil
- Replies: 4
- Views: 546
upgrade planner's get_mapper()'s to can return nil
The from side when "empty" will still return a table, the to side when empty can return nil:
/c game.print(serpent.line(game.player.cursor_stack.get_mapper(1, "from"))) -- {type = "item"}
/c game.print(serpent.line(game.player.cursor_stack.get_mapper(1, "to"))) -- nil
/c game.print(serpent.line(game.player.cursor_stack.get_mapper(1, "from"))) -- {type = "item"}
/c game.print(serpent.line(game.player.cursor_stack.get_mapper(1, "to"))) -- nil
- Thu May 08, 2025 11:25 am
- Forum: Modding interface requests
- Topic: defines.relative_gui_type.factoriopedia_gui
- Replies: 0
- Views: 131
defines.relative_gui_type.factoriopedia_gui
Would be nice if we could attach stuff to the factoriopedia gui, like custom bookmarks when you like to quickly reference stuff:
/c game.player.gui.relative.add{type = "label", caption = "bookmarks", anchor = {gui = defines.relative_gui_type.factoriopedia_gui, position = defines.relative_gui ...
/c game.player.gui.relative.add{type = "label", caption = "bookmarks", anchor = {gui = defines.relative_gui_type.factoriopedia_gui, position = defines.relative_gui ...
- Tue May 06, 2025 9:38 am
- Forum: Documentation Improvement Requests
- Topic: Feature-bound properties should say which feature
- Replies: 6
- Views: 1050
Re: Feature-bound properties should say which feature
it would honestly be really useful to know which feature flag gates a certain expansion feature, segmented units is kinda an obvious one but belt stacks requiring space travel might not be as straightforward, im assuming it becomes more important as mods pop up that don't depend on the space age mod ...
- Mon May 05, 2025 5:54 pm
- Forum: Modding interface requests
- Topic: LuaRendering: asteroid as orientation_target support
- Replies: 2
- Views: 258
Re: LuaRendering: asteroid as orientation_target support
- new world
- /cheat all
- create a non-nauvis platform
- wait for asteroids to spawn
- run this code
/c local asteroid = game.player.selected
rendering.draw_sprite{
sprite = "item/rail",
target = asteroid,
surface = asteroid.surface,
orientation = math.random(),
oriented_offset = {1, 1 ...
- /cheat all
- create a non-nauvis platform
- wait for asteroids to spawn
- run this code
/c local asteroid = game.player.selected
rendering.draw_sprite{
sprite = "item/rail",
target = asteroid,
surface = asteroid.surface,
orientation = math.random(),
oriented_offset = {1, 1 ...
- Sun May 04, 2025 5:26 pm
- Forum: Modding interface requests
- Topic: LuaRendering: asteroid as orientation_target support
- Replies: 2
- Views: 258
LuaRendering: asteroid as orientation_target support
Asteroid rotation is based on some unit number + tick math which is not exposed as it's orientation towards e.g. luarendering, it would be nice if render objects could be made to rotate along with asteroids.
- Sun May 04, 2025 1:24 pm
- Forum: Won't fix.
- Topic: [2.0.47] personal laser defence lasers aren't drawing from the mechsuit's center during flight
- Replies: 1
- Views: 435
[2.0.47] personal laser defence lasers aren't drawing from the mechsuit's center during flight
It is expected that the source of the lasers doesn't start in mid air, whilst the example pics shows space w/ asteroids this situation is easily replicated when fighting biters around trees.
- Fri May 02, 2025 11:46 am
- Forum: Resolved Problems and Bugs
- Topic: [boskid][2.0.47] crash to desktop when not using deepcopy for animation layers
- Replies: 1
- Views: 1139
[boskid][2.0.47] crash to desktop when not using deepcopy for animation layers
I was working on adding some layers to an entity so i had to grab the unlayered layer and convert it into the first and the game just went poof on me:
- disable space age & quality
- install krastorio 2
- add this in a data-final-fixes.lua:
data.raw.pump["kr-steel-pump"].animations["north ...
- disable space age & quality
- install krastorio 2
- add this in a data-final-fixes.lua:
data.raw.pump["kr-steel-pump"].animations["north ...
- Wed Apr 30, 2025 4:18 am
- Forum: Modding interface requests
- Topic: When you create/update an item-request-proxy, refresh the gui
- Replies: 1
- Views: 198
When you create/update an item-request-proxy, refresh the gui
It would be nice that if when an item request proxy gets created or modified by script whilst the gui is open that any players with it open see the change.
- Tue Apr 29, 2025 2:38 pm
- Forum: Releases
- Topic: Version 2.0.46
- Replies: 45
- Views: 19512
Re: Version 2.0.46
Is this indirectly related to 128219 ?
Yeah it is (author of that mod here), indestructible entities are processed after all the other entities that can take damage in case the entities that died updated their invulnerability flag, as long as an invulnerable entity exists the tile will not be ...
- Tue Apr 29, 2025 10:19 am
- Forum: Resolved Problems and Bugs
- Topic: [2.0.46] train.schedule = train.schedule, index out of bounds
- Replies: 0
- Views: 197
[2.0.46] train.schedule = train.schedule, index out of bounds
- create a world
- place rails
- place locomotive
- give it an interrupt
- /c game.player.selected.train.schedule = game.player.selected.train.schedule
(note that platforms are also affected, but you can figure out those repro steps)
When a train has no schedule and no interrupts `train.schedule ...
- place rails
- place locomotive
- give it an interrupt
- /c game.player.selected.train.schedule = game.player.selected.train.schedule
(note that platforms are also affected, but you can figure out those repro steps)
When a train has no schedule and no interrupts `train.schedule ...
- Thu Apr 17, 2025 9:20 am
- Forum: Not a bug
- Topic: [2.0.45] Proxy-container entities are not taking Damage from Asteroids
- Replies: 3
- Views: 544
Re: [2.0.45] Proxy-container entities are not taking Damage from Asteroids
Hi, this issue is completely due to the mod and should have been send to that mod's author (me) instead of the forum, this should be moved to not a bug.
Now let me explain what is happening:
When an asteroid collides with a space platform tile the "heuristic entity search" goes through all the ...
Now let me explain what is happening:
When an asteroid collides with a space platform tile the "heuristic entity search" goes through all the ...
- Wed Apr 16, 2025 6:57 pm
- Forum: Resolved Requests
- Topic: SimulationDefinition.mods should be a little more specific
- Replies: 1
- Views: 241
SimulationDefinition.mods should be a little more specific
The way it is currently phrased could be interpreted as that it would not load the data stage of unspecified mods, it should mention control stage specifically:
- Mon Apr 14, 2025 3:56 pm
- Forum: Resolved Requests
- Topic: ScheduleInterrupt.inside_interrupt is not required
- Replies: 1
- Views: 231
ScheduleInterrupt.inside_interrupt is not required
schedule.add_interrupt({name = "interrupt"}) is a valid command.