The mod Actual Underground Pipes (0.1.11) caused a non-recoverable error.
Please report this error to the mod author.
Error while running event the-one-mod-with-underground-bits::on_player_cursor_stack_changed (ID 35)
Unknown item name: 
stack traceback:
    [C]: in function 'remove'
the-one-mod-with-underground-bits/control.lua:89: in function <the-one-mod-with-underground-bits/control.lua:62>
only happens when placing last pipe from inventory above ground, underground is fine.
Potential fix:
replace (control.lua, line 89)
local removed = player.get_main_inventory().remove{
      name = old_item:sub(8,-1),
      count = player.cursor_ghost.name.stack_size,
      quality = old_quality
    }
with:
if item:sub(1,7) == "tomwub-" then
      old_item = old_item:sub(8,-1)
    else
      old_item = old_item:sub(1,-1)
    end
    local removed = player.get_main_inventory().remove{
      name = old_item:sub(1,-1),
      count = player.cursor_ghost.name.stack_size,
      quality = old_quality
    }
at least that worked on my computer :D