if I use a copper-plat symbol for a train stop name:
then print its name:
Code: Select all
game.print(train_stop.backer_name)
How can I print the symbol only as it is displayed for the train stop name?
Thank you

Code: Select all
game.print(train_stop.backer_name)
Code: Select all
function corrected_train_stop_name(str)
if not string.find(str,"=")
then
return str
else
return string.gsub(string.gsub(str, "=", "/"), "%[", "[img=")
end
end
Code: Select all
[item=copper-plate]
Code: Select all
[img=item/copper-plate]
Code: Select all
for _, surface in pairs(game.surfaces) do
local stops = surface.find_entities_filtered{type="train-stop"}
for _, stop in pairs(stops) do
stop.backer_name = string.gsub(stop.backer_name, "item=", "img=item/")
stop.backer_name = string.gsub(stop.backer_name, "fluid=", "img=fluid/")
end
end