The proxy-item of Obeslisks-of-light was updated to be a turret, which makes the turret attack inaccurate when Factorio-Tiberium is enabled (compatibility applied to turrets, and not the new base item)
https://drive.google.com/file/d/1Y5pzNYbG4FwjJlZrj0vaTF7NX3dCH7Iz/view?usp=sharing
The smallest change, with a little safety, is :
for _, name in pairs({"obelisk-of-light", "obelisk-nw", "obelisk-ne", "obelisk-se", "obelisk-sw"}) do
local turret = data.raw["electric-turret"][name]
if turret then
for _, property in pairs({"attack_parameters", "max_health", "collision_box", "selection_box", "energy_source", "map_color", "starting_attack_sound"}) do
turret[property] = table.deepcopy(tiberium_obelisk_entity[property])
end
end
end
But overall, I rewrote the file to be less difficult to read. (what I believe to be less difficult)