When the message comes through GUI Announcements that the Cargoplane will drop a supply drop in grid area xx, there is apparently an error in either the .cs or the lang file that causes the C# coding to also appear as text in the message.
?Lang file error
Those are color tags, not C#. Are you closing them all properly?
Wulf
Those are color tags, not C#. Are you closing them all properly?
it looks like there is a </size> missing at the end of the line.
i just checked my lang files and there are no default size configs in the file, must have been missed out when editing
I didn't write the code, it came that way with the plugin.
Ah, I see.
"Prefix format": "<size=12><color={0}>{1}</color>: ",You'd need to edit that in the oxide/lang file to add the missing </size> at the end. The maintainer would need to fix it as well in the default.
Wulf
Ah, I see.
"Prefix format": "<size=12><color={0}>{1}</color>: ",You'd need to edit that in the oxide/lang file to add the missing </size> at the end. The maintainer would need to fix it as well in the default.
You beat me to it Wulf :) i just checked the config file and found the error was there and not in the lang file
it should read
"Prefix format": "<size=17><color={0}>{1}</color></size>: ",
Oops, config, not lang!
I will be fixing the language files - completely forgot about that.