Files
Rage 376b4b9689 Added New Mods and Profiles Folders
This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
2025-01-14 05:07:53 -05:00

22 lines
881 B
Plaintext

function on_xml_read()
RegisterScriptCallback("on_xml_read",
function(xml_file_name, xml_obj)
if xml_file_name == "ui\\map_spots.xml" or xml_file_name == "ui\\map_spots_16.xml" then
xml_obj:insertFromXMLString([[
<water_spot>
<level_map spot="water_spot_tex"/>
<mini_map spot="water_spot_mini_tex"/>
</water_spot>
<water_spot_tex width="19" height="19" stretch="1" alignment="c" location_level="5">
<texture>ui_maid_water_spot</texture>
</water_spot_tex>
<water_spot_mini_tex x="0" y="0" width="19" height="19" alignment="c" stretch="1" location_level="10" scale_min="3.0" scale_max="5.1" scale="0">
<texture>ui_maid_water_spot</texture>
</water_spot_mini_tex>
]])
end
end)
end