mirror of
https://codeberg.org/Wuzzy/pride_flags.git
synced 2025-04-30 22:21:43 -04:00
Compare commits
No commits in common. "master" and "2.1.0" have entirely different histories.
7 changed files with 7 additions and 27 deletions
12
README.txt
12
README.txt
|
@ -1,7 +1,7 @@
|
|||
Pride Flags Mod v2.2.0
|
||||
Pride Flags Mod v2.1.0
|
||||
By Leslie E. Krause and Wuzzy
|
||||
|
||||
Pride Flags adds a variety of animated flags to celebrate Pride in Luanti.
|
||||
Pride Flags adds a variety of animated flags to celebrate Pride in Minetest.
|
||||
|
||||
This adds two blocks:
|
||||
|
||||
|
@ -85,7 +85,7 @@ Browse source code...
|
|||
Compatability
|
||||
----------------------
|
||||
|
||||
Luanti/Minetest version 5.4.0 or later required.
|
||||
Minetest 5.4.0 or later required.
|
||||
|
||||
(older versions might work, too, but the flag waving sound is buggy)
|
||||
|
||||
|
@ -103,9 +103,3 @@ The source code is licensed under the LGPLv3.
|
|||
The media is licensed under CC BY-SA 3.0.
|
||||
|
||||
See LICENSE.txt for details and credits.
|
||||
|
||||
Translation credits:
|
||||
|
||||
* German: Wuzzy
|
||||
* French: Z-Master
|
||||
* Spanish: megustanlosfrijoles
|
||||
|
|
8
init.lua
8
init.lua
|
@ -1,5 +1,5 @@
|
|||
--------------------------------------------------------
|
||||
-- Luanti :: Pride Flags Mod (pride_flags)
|
||||
-- Minetest :: Pride Flags Mod (pride_flags)
|
||||
--
|
||||
-- See README.txt for licensing and other information.
|
||||
-- Copyright (c) 2022, Leslie E. Krause and Wuzzy
|
||||
|
@ -10,7 +10,7 @@ pride_flags = {}
|
|||
local wind_noise = PerlinNoise( 204, 1, 0, 500 )
|
||||
-- Check whether the new `get_2d` Perlin function is available,
|
||||
-- otherwise use `get2d`. Needed to suppress deprecation
|
||||
-- warning in newer Luanti versions.
|
||||
-- warning in newer Minetest versions.
|
||||
local old_get2d = true
|
||||
if wind_noise.get_2d then
|
||||
old_get2d = false
|
||||
|
@ -364,7 +364,7 @@ local function cycle_flag( pos, player, cycle_backwards )
|
|||
local pname = player:get_player_name( )
|
||||
if minetest.is_protected( pos, pname ) and not
|
||||
minetest.check_player_privs( pname, "protection_bypass") then
|
||||
minetest.record_protection_violation( pos, pname )
|
||||
minetest.register_protection_violation( pos, pname )
|
||||
return
|
||||
end
|
||||
|
||||
|
@ -422,7 +422,7 @@ minetest.register_node( "pride_flags:upper_mast", {
|
|||
node_placement_prediction = "",
|
||||
|
||||
on_place = function( itemstack, placer, pointed_thing )
|
||||
if pointed_thing.type ~= "node" then
|
||||
if not pointed_thing.type == "node" then
|
||||
return itemstack
|
||||
end
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# textdomain:pride_flags
|
||||
Pride Flags=Pride-Flaggen
|
||||
Adds a variety of animated flags to celebrate Pride.=Fügt eine Reihe an animierten Flaggen hinzu, um Pride (LGBTQ+) zu feiern.
|
||||
Flag Pole=Flaggenmast
|
||||
Flag Pole with Flag=Flaggenmast mit Flagge
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
# textdomain:pride_flags
|
||||
Pride Flags=Banderas del orgullo
|
||||
Adds a variety of animated flags to celebrate Pride.=Añade una variedad de banderas animadas para celebrar el orgullo
|
||||
Flag Pole=Asta
|
||||
Flag Pole with Flag=Asta con bandera
|
|
@ -1,5 +0,0 @@
|
|||
# textdomain: pride_flags
|
||||
Pride Flags=
|
||||
Adds a variety of animated flags to celebrate Pride.=
|
||||
Flag Pole=Mât
|
||||
Flag Pole with Flag=Mât avec drapeau
|
|
@ -1,5 +1,3 @@
|
|||
# textdomain:pride_flags
|
||||
Pride Flags=
|
||||
Adds a variety of animated flags to celebrate Pride.=
|
||||
Flag Pole=
|
||||
Flag Pole with Flag=
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 787 B After Width: | Height: | Size: 403 B |
Loading…
Add table
Reference in a new issue