Skip to content

Commit

Permalink
Mars is spelled with capital 'M'
Browse files Browse the repository at this point in the history
also is not preceeded with 'the'.
Same would apply to Earth, Saturn, etc.
But not 'the moon', 'the asteroids'.
There are various known moons, asteroids, suns/stars -> preceded with
'the' and lower-case.
There is only one Earth, Saturn, Pluto etc. -> no 'the' and capitalized.
  • Loading branch information
SwissalpS authored and BuckarooBanzay committed Jul 29, 2024
1 parent fed5cd0 commit 2f41d09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion privs/layers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ minetest.register_privilege("asteroids_access", {
})

minetest.register_privilege("mars_access", {
description = "Can travel to the mars",
description = "Can travel to Mars",
otp_keep = true
})

Expand Down
2 changes: 1 addition & 1 deletion travel/travel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pandorabox.can_travel = function(player, pos)

-- mars
if pos.y > 10000 and pos.y < 17000 and not minetest.check_player_privs(player, "mars_access") then
return false, "You need the 'mars_access' priv to go to the mars!"
return false, "You need the 'mars_access' priv to go to Mars!"
end

-- warzone
Expand Down

0 comments on commit 2f41d09

Please sign in to comment.