Reduced the privellges gained in Creative Mode and add minor changes to Fire

This commit is contained in:
IamPyu 2024-11-15 19:04:43 -06:00
parent 5cbc583f8d
commit ec76ed752d
3 changed files with 7 additions and 5 deletions

View File

@ -12,6 +12,11 @@ I should just start giving updates a version number to avoid naming updates.
- Added Paper
- Added various new colored blocks variants (How will I make flowers for all of these?)
- Crates now drop what's contained inside of them instead of not allowing the player to destroy it.
- Fire will now disappear after a while unless on a node with `fire_persist` group
- Give the `fire_persist` group the the following nodes:
- Magma
- Molten Rock
- Reduced amount of privellges gained in Creative Mode
## [Oct 20th - Nov 2nd] Update: The Something Update

View File

@ -1,5 +1,5 @@
PyuTest.make_node("pyutest_blocks:fire", "Fire", {
dig_immediate = 1,
dig_immediate = 3,
oddly_breakable_by_hand = PyuTest.BLOCK_FAST,
emits_heat = 1
}, {
@ -20,7 +20,7 @@ PyuTest.make_node("pyutest_blocks:fire", "Fire", {
sunlight_propagates = true,
damage_per_second = 2,
light_source = 8,
drop = "pyutest_tools:ash 4"
drop = "pyutest_tools:ash 2"
})
minetest.register_abm({

View File

@ -20,10 +20,7 @@ minetest.register_on_joinplayer(function (player)
minetest.set_player_privs(name, PyuTest.util.tableconcat({
fly = true,
fast = true,
noclip = true,
settime = true,
creative = true,
teleport = true,
}, minetest.get_player_privs(name)))
end
end)