merge beacon-branch into fork beacon branch #7

Merged
chmodsayshello merged 453 commits from VoxeLibre/VoxeLibre:beacons into beacon-"fork" 2022-07-23 11:30:49 +02:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit bbd86045e5 - Show all commits

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