diff --git a/description.txt b/description.txt deleted file mode 100644 index 87dacdd..0000000 --- a/description.txt +++ /dev/null @@ -1,2 +0,0 @@ -player_monoids is a library for managing global player state, such as physics -overrides or player visual size. diff --git a/mod.conf b/mod.conf index 2ff945a..393bbea 100644 --- a/mod.conf +++ b/mod.conf @@ -1 +1,5 @@ -name=player_monoids \ No newline at end of file +name = player_monoids +description = """ +A library for managing global player state, +such as physics overrides or player visual size. +""" \ No newline at end of file diff --git a/standard_monoids.lua b/standard_monoids.lua index 6b36134..1ea87da 100644 --- a/standard_monoids.lua +++ b/standard_monoids.lua @@ -63,7 +63,6 @@ player_monoids.jump = monoid({ end, }) - -- Gravity monoid. Effect values are gravity multipliers. player_monoids.gravity = monoid({ combine = mult, @@ -76,7 +75,6 @@ player_monoids.gravity = monoid({ end, }) - -- Fly ability monoid. The values are booleans, which are combined by or. A true -- value indicates having the ability to fly. player_monoids.fly = monoid({ @@ -104,7 +102,6 @@ player_monoids.fly = monoid({ end, }) - -- Noclip ability monoid. Works the same as fly monoid. player_monoids.noclip = monoid({ combine = function(p, q) return p or q end, diff --git a/test.lua b/test.lua index f006d86..1b8d2da 100644 --- a/test.lua +++ b/test.lua @@ -4,6 +4,7 @@ local speed = player_monoids.speed minetest.register_privilege("monoid_master", { description = "Allows testing of player monoids.", give_to_singleplayer = false, + give_to_admin = true, }) local function test(player)