Country Lode, Take Me Home Advancement

This commit is contained in:
PrairieAstronomer 2022-06-11 15:31:57 -06:00
parent eb72bb81da
commit bbd86045e5
2 changed files with 8 additions and 0 deletions

View File

@ -208,6 +208,13 @@ awards.register_achievement("mcl:fishyBusiness", {
icon = "mcl_fishing_fishing_rod.png",
})
-- Triggered in mcl_compass
awards.register_achievement("mcl:countryLode", {
title = S("Country Lode, Take Me Home"),
description = S("Use a compass on a Lodestone."),
icon = "lodestone_side4.png",
})
-- NON-PC ACHIEVEMENTS (XBox, Pocket Edition, etc.)
if non_pc_achievements then

View File

@ -189,6 +189,7 @@ minetest.register_globalstep(function(dtime)
if string_find(stack:get_name(), "_lodestone") then
stack:set_name("mcl_compass:" .. compass_frame .. "_lodestone")
awards.unlock(player:get_player_name(), "mcl:countryLode")
else
stack:set_name("mcl_compass:" .. compass_frame)
end