Instant Blueprint

by hsp9513

Blueprints, deconstruction planners and upgrade planners respond instantly. Since no costs are used for installation, it can be used as a cheat mod.

Utilities
1 year, 3 days ago
1.1 - 2.0
2.84K
Blueprints Cheats

g Concrete cant be instantly placed

5 months ago

Is this intentional?

Stone Bricks, Landfill, Concrete, Refined Concrete + hazard variants, cant be instantly placed, the mod errors out. Game complains that the "Entity is not a ghost or an item request proxy."

8 days ago

The 0.0.7 fix introduced this issue.
entity.insert_plan = {} has to be moved into the IF above it, this property is only for Entity ghosts, Tile ghost do not have it.
Fixed code:
if entity.name=="entity-ghost" and entity.insert_plan then
--game.print("plan ")
--game.print(helpers.table_to_json(entity.insert_plan))
insert_plan = entity.insert_plan
entity.insert_plan = {}
end

New response