Backed out
changeset f9f71cccb5c3 - Wuzzy is right, the license is incompatible.
I'd misread the wording on https://fontlibrary.org/en/font/symbola
The terms on the author's site prevent using it with almost all FOSS projects, and even prevent using it in a merge like this.
We'll just have to find some other font to improve coverage.
HedgewarsScriptLoad("/Scripts/Locale.lua")
function awardAchievement(name, statMessage, capgrp)
local achievementString = string.format(loc("Achievement gotten: %s"), name)
if capgrp == nil then
capgrp = capgrpMessage2
end
if capgrp ~= false then
AddCaption(achievementString, 0xFFBA00FF, capgrp)
end
if not statMessage then
statMessage = achievementString
end
SendStat(siCustomAchievement, statMessage)
end