CHMOD everything (update)

This commit is contained in:
LeMagnesium 2015-08-16 16:10:50 +02:00
parent b4996ee69b
commit 50de0d20c4
92 changed files with 2 additions and 2 deletions

View File

View File

View File

View File

View File

View File

View File

Before

Width:  |  Height:  |  Size: 444 B

After

Width:  |  Height:  |  Size: 444 B

View File

Before

Width:  |  Height:  |  Size: 359 B

After

Width:  |  Height:  |  Size: 359 B

View File

Before

Width:  |  Height:  |  Size: 682 B

After

Width:  |  Height:  |  Size: 682 B

View File

Before

Width:  |  Height:  |  Size: 731 B

After

Width:  |  Height:  |  Size: 731 B

View File

Before

Width:  |  Height:  |  Size: 261 B

After

Width:  |  Height:  |  Size: 261 B

View File

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

Before

Width:  |  Height:  |  Size: 303 B

After

Width:  |  Height:  |  Size: 303 B

View File

Before

Width:  |  Height:  |  Size: 219 B

After

Width:  |  Height:  |  Size: 219 B

View File

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 265 B

View File

Before

Width:  |  Height:  |  Size: 295 B

After

Width:  |  Height:  |  Size: 295 B

View File

Before

Width:  |  Height:  |  Size: 316 B

After

Width:  |  Height:  |  Size: 316 B

View File

Before

Width:  |  Height:  |  Size: 339 B

After

Width:  |  Height:  |  Size: 339 B

View File

Before

Width:  |  Height:  |  Size: 285 B

After

Width:  |  Height:  |  Size: 285 B

View File

Before

Width:  |  Height:  |  Size: 466 B

After

Width:  |  Height:  |  Size: 466 B

View File

Before

Width:  |  Height:  |  Size: 430 B

After

Width:  |  Height:  |  Size: 430 B

View File

Before

Width:  |  Height:  |  Size: 817 B

After

Width:  |  Height:  |  Size: 817 B

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 155 B

After

Width:  |  Height:  |  Size: 155 B

View File

Before

Width:  |  Height:  |  Size: 167 B

After

Width:  |  Height:  |  Size: 167 B

View File

Before

Width:  |  Height:  |  Size: 94 B

After

Width:  |  Height:  |  Size: 94 B

View File

Before

Width:  |  Height:  |  Size: 92 B

After

Width:  |  Height:  |  Size: 92 B

0
mods/3dchest/License.txt Normal file → Executable file
View File

0
mods/3dchest/depends.txt Normal file → Executable file
View File

4
mods/3dchest/init.lua Normal file → Executable file
View File

@ -98,7 +98,7 @@ minetest.register_node("3dchest:chest", {
walkable = false,
groups = {choppy=2, dig_immediate = 2},
legacy_facedir_simple = true,
on_construct = function(pos)
local param2 = minetest.get_node(pos).param2
local meta = minetest.get_meta(pos)
@ -233,7 +233,7 @@ minetest.register_node("3dchest:chest", {
}
local backnode = minetest.get_node(directions[dir])
local upnode = minetest.get_node({x = directions[dir].x, y = directions[dir].y + 1, z = directions[dir].z})
if (not backnode or (backnode and backnode.name ~= "air"))
if (not backnode or (backnode and backnode.name ~= "air"))
or (not upnode or (upnode and upnode.name ~= "air")) then
minetest.chat_send_player(clicker:get_player_name(), "Cannot open chest's lid, move it.")
return

0
mods/3dchest/models/chest_proto.x Normal file → Executable file
View File

0
mods/3dchest/textures/default_chest3d.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

0
mods/ambience/README.md Normal file → Executable file
View File

0
mods/ambience/depends.txt Normal file → Executable file
View File

0
mods/ambience/init.lua Normal file → Executable file
View File

0
mods/ambience/sounds/SoundLicenses.txt Normal file → Executable file
View File

0
mods/ambience/sounds/beach.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/bird1.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/bird2.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/bluejay.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/canadianloon2.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/cardinal.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/coyote.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/craw.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/crestedlark.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/cricket.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/deer.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/desertwind.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/drippingwater1.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/drippingwater2.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/fire_large.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/fire_small.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/frog.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/gull.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/hornedowl.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/lava.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/peacock.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/robin.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/scuba.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/seagull.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/swim_splashing.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/waterfall.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/wind.ogg Normal file → Executable file
View File

0
mods/ambience/sounds/wolves.ogg Normal file → Executable file
View File

0
mods/biome_lib/API.txt Normal file → Executable file
View File

0
mods/biome_lib/README.md Normal file → Executable file
View File

0
mods/biome_lib/depends.txt Normal file → Executable file
View File

0
mods/biome_lib/init.lua Normal file → Executable file
View File

0
mods/biome_lib/locale/de.txt Normal file → Executable file
View File

0
mods/biome_lib/locale/fr.txt Normal file → Executable file
View File

0
mods/biome_lib/locale/template.txt Normal file → Executable file
View File

0
mods/biome_lib/locale/tr.txt Normal file → Executable file
View File

0
mods/plantlife_modpack/3dmushrooms/depends.txt Normal file → Executable file
View File

0
mods/plantlife_modpack/3dmushrooms/init.lua Normal file → Executable file
View File

View File

View File

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View File