From 87c467ab8b34534d26fa7ff8b4a85bead257c8a2 Mon Sep 17 00:00:00 2001 From: PilzAdam Date: Sat, 18 Aug 2012 12:01:26 +0200 Subject: [PATCH] Remove unused Files --- .gitattributes | 22 -- .gitignore | 163 ---------- ambience/init.lua.4seasbird | 60 ---- ambience/init.lua~ | 467 ---------------------------- ambience/textures/4seasons_bird.png | Bin 4254 -> 0 bytes us.stackdump | 18 -- 6 files changed, 730 deletions(-) delete mode 100644 .gitattributes delete mode 100644 .gitignore delete mode 100644 ambience/init.lua.4seasbird delete mode 100644 ambience/init.lua~ delete mode 100644 ambience/textures/4seasons_bird.png delete mode 100644 us.stackdump diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 412eeda..0000000 --- a/.gitattributes +++ /dev/null @@ -1,22 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto - -# Custom for Visual Studio -*.cs diff=csharp -*.sln merge=union -*.csproj merge=union -*.vbproj merge=union -*.fsproj merge=union -*.dbproj merge=union - -# Standard to msysgit -*.doc diff=astextplain -*.DOC diff=astextplain -*.docx diff=astextplain -*.DOCX diff=astextplain -*.dot diff=astextplain -*.DOT diff=astextplain -*.pdf diff=astextplain -*.PDF diff=astextplain -*.rtf diff=astextplain -*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 5ebd21a..0000000 --- a/.gitignore +++ /dev/null @@ -1,163 +0,0 @@ -################# -## Eclipse -################# - -*.pydevproject -.project -.metadata -bin/ -tmp/ -*.tmp -*.bak -*.swp -*~.nib -local.properties -.classpath -.settings/ -.loadpath - -# External tool builders -.externalToolBuilders/ - -# Locally stored "Eclipse launch configurations" -*.launch - -# CDT-specific -.cproject - -# PDT-specific -.buildpath - - -################# -## Visual Studio -################# - -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. - -# User-specific files -*.suo -*.user -*.sln.docstates - -# Build results -[Dd]ebug/ -[Rr]elease/ -*_i.c -*_p.c -*.ilk -*.meta -*.obj -*.pch -*.pdb -*.pgc -*.pgd -*.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.vspscc -.builds -*.dotCover - -## TODO: If you have NuGet Package Restore enabled, uncomment this -#packages/ - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opensdf -*.sdf - -# Visual Studio profiler -*.psess -*.vsp - -# ReSharper is a .NET coding add-in -_ReSharper* - -# Installshield output folder -[Ee]xpress - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish - -# Others -[Bb]in -[Oo]bj -sql -TestResults -*.Cache -ClientBin -stylecop.* -~$* -*.dbmdl -Generated_Code #added for RIA/Silverlight projects - -# Backup & report files from converting an old project file to a newer -# Visual Studio version. Backup files are not needed, because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML - - - -############ -## Windows -############ - -# Windows image file caches -Thumbs.db - -# Folder config file -Desktop.ini - - -############# -## Python -############# - -*.py[co] - -# Packages -*.egg -*.egg-info -dist -build -eggs -parts -bin -var -sdist -develop-eggs -.installed.cfg - -# Installer logs -pip-log.txt - -# Unit test / coverage reports -.coverage -.tox - -#Translations -*.mo - -#Mr Developer -.mr.developer.cfg - -# Mac crap -.DS_Store diff --git a/ambience/init.lua.4seasbird b/ambience/init.lua.4seasbird deleted file mode 100644 index c6a424c..0000000 --- a/ambience/init.lua.4seasbird +++ /dev/null @@ -1,60 +0,0 @@ --- *********************************************************************************** --- *********************************************** --- Ambience ************************************************** --- *********************************************** --- *********************************************************************************** - - -BIRDS = true - --- *********************************************************************************** --- BIRDS ************************************************** --- *********************************************************************************** -if BIRDS == true then - local bird = {} - bird.sounds = {} - bird_sound = function(p) - local wanted_sound = {name="bird", gain=0.6} - bird.sounds[minetest.hash_node_position(p)] = { - handle = minetest.sound_play(wanted_sound, {pos=p, loop=true}), - name = wanted_sound.name, } - end - - bird_stop = function(p) - local sound = bird.sounds[minetest.hash_node_position(p)] - if sound ~= nil then - minetest.sound_stop(sound.handle) - bird.sounds[minetest.hash_node_position(p)] = nil - end - end - minetest.register_on_dignode(function(p, node) - if node.name == "4seasons:bird" then - bird_stop(p) - - end - end) - minetest.register_abm({ - nodenames = { "4seasons:leaves_spring",'default:leaves' }, - interval = NATURE_GROW_INTERVAL, - chance = 200, - action = function(pos, node, active_object_count, active_object_count_wider) - local air = { x=pos.x, y=pos.y+1,z=pos.z } - local is_air = minetest.env:get_node_or_nil(air) - if is_air ~= nil and is_air.name == 'air' then - minetest.env:add_node(air,{type="node",name='4seasons:bird'}) - bird_sound(air) - end - end - }) - minetest.register_abm({ - nodenames = {'4seasons:bird' }, - interval = NATURE_GROW_INTERVAL, - chance = 2, - action = function(pos, node, active_object_count, active_object_count_wider) - minetest.env:remove_node(pos) - bird_stop(pos) - end - }) -end - - diff --git a/ambience/init.lua~ b/ambience/init.lua~ deleted file mode 100644 index 69d73d2..0000000 --- a/ambience/init.lua~ +++ /dev/null @@ -1,467 +0,0 @@ --- *********************************************************************************** --- *********************************************** --- 4SEASONS ************************************************** --- *********************************************** --- *********************************************************************************** - -SEASON_LENGTH = 1500 -- max tested 1500 -WEATHER_CHANGE_INTERVAL = 60 -BIRDS = true - -PLANTLIKE = function(nodeid, nodename,type,option) - if option == nil then option = false end - - local params ={ description = nodename, drawtype = "plantlike", tile_images = {"4seasons_"..nodeid..'.png'}, - inventory_image = "4seasons_"..nodeid..'.png', wield_image = "4seasons_"..nodeid..'.png', paramtype = "light", } - - if type == 'veg' then - params.groups = {snappy=2,dig_immediate=3,flammable=2} - params.sounds = default.node_sound_leaves_defaults() - if option == false then params.walkable = false end - elseif type == 'met' then -- metallic - params.groups = {cracky=3} - params.sounds = default.node_sound_stone_defaults() - elseif type == 'cri' then -- craft items - params.groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3} - params.sounds = default.node_sound_wood_defaults() - if option == false then params.walkable = false end - elseif type == 'eat' then -- edible - params.groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3} - params.sounds = default.node_sound_wood_defaults() - params.walkable = false - params.on_use = minetest.item_eat(option) - end - minetest.register_node("4seasons:"..nodeid, params) -end - --- *********************************************************************************** --- SEASONAL CHANGES ************************************************** --- *********************************************************************************** -SEASON_FILE = minetest.get_worldpath()..'/4seasons.season' - -local function set_season(t) - CURRENT_SEASON = t - -- write to file - local f = io.open(SEASON_FILE, "w") - f:write(CURRENT_SEASON) - io.close(f) -end - -local f = io.open(SEASON_FILE, "r") -if f ~= nil then - CURRENT_SEASON = f:read("*n") - io.close(f) -else - print('could not find season file, creating one (setting summer).') - set_season(3) - -end - -switch_seasons = function() - if CURRENT_SEASON == 1 then - set_season(2) -- set to spring - print('changing to spring') - minetest.after(SEASON_LENGTH,switch_seasons) - elseif CURRENT_SEASON == 2 then - set_season(3) -- set to summer - print('changing to summer') - minetest.after(SEASON_LENGTH,switch_seasons) - elseif CURRENT_SEASON == 3 then - set_season(4) -- set to autumn - print('changing to autumn') - minetest.after(SEASON_LENGTH,switch_seasons) - elseif CURRENT_SEASON == 4 then - set_season(1) -- set to winter - print('changing to winter') - minetest.after(SEASON_LENGTH,switch_seasons) - - end -end - -minetest.after(SEASON_LENGTH,switch_seasons) - -minetest.register_chatcommand("season", { - params = "", - description = "set the season", - privs = {server=true}, - func = function(name, param) - if param == 'winter' or param == 'Winter' then set_season(1) - elseif param == 'spring' or param == 'Spring' then set_season(2) - elseif param == 'summer' or param == 'Summer' then set_season(3) - elseif param == 'fall' or param == 'Fall' then set_season(4) - elseif param == 'pause' or param == 'Pause' then set_season(0) - minetest.chat_send_player(name, "Season paused.") - return - else - minetest.chat_send_player(name, "Invalid paramater '"..param.."', try 'winter','spring','summer' or 'fall'.") - return - end - minetest.chat_send_player(name, "Season changed.") - end, -}) - - -minetest.register_abm({ - nodenames = { "default:dirt_with_grass","4seasons:grass_autumn",'4seasons:grass_winter',"4seasons:grass_spring", - 'default:leaves','4seasons:leaves_autumn','4seasons:leaves_winter','4seasons:leaves_spring', - "default:water_source","default:water_flowing", "default:cactus","default:desert_sand","default:sand","4seasons:desertsand_winter", "4seasons:sand_winter","4seasons:cactus_winter",'4seasons:ice_source','4seasons:ice_flowing' }, - interval = WEATHER_CHANGE_INTERVAL, - chance = 6, - - action = function(pos, node, active_object_count, active_object_count_wider) - if CURRENT_SEASON == 1 then - if node.name == '4seasons:grass_autumn' or node.name == 'default:dirt_with_grass' or node.name == '4seasons:grass_spring' then - minetest.env:add_node(pos,{type="node",name='4seasons:grass_winter'}) - elseif node.name == '4seasons:leaves_autumn' or node.name == 'default:leaves' or node.name == '4seasons:leaves_spring' then - minetest.env:add_node(pos,{type="node",name='4seasons:leaves_winter'}) - - elseif node.name == 'default:desert_sand' then - above = minetest.env:get_node_or_nil({x=pos.x,y=pos.y+1,z=pos.z}) - if above ~= nil and above.name == 'air' then - minetest.env:add_node(pos,{type="node",name='4seasons:desertsand_winter'}) - end - elseif node.name == 'default:sand' then - above = minetest.env:get_node_or_nil({x=pos.x,y=pos.y+1,z=pos.z}) - if above ~= nil and above.name == 'air' then - minetest.env:add_node(pos,{type="node",name='4seasons:sand_winter'}) - end - elseif node.name == 'default:cactus' then - above = minetest.env:get_node_or_nil({x=pos.x,y=pos.y+1,z=pos.z}) - if above ~= nil and above.name == 'air' then - minetest.env:add_node(pos,{type="node",name='4seasons:cactus_winter'}) - end - elseif node.name == 'default:water_source' then - above = minetest.env:get_node_or_nil({x=pos.x,y=pos.y+1,z=pos.z}) - if above ~= nil and above.name == 'air' then - minetest.env:add_node(pos,{type="node",name='4seasons:ice_source'}) - end - elseif node.name == 'default:water_flowing' then - above = minetest.env:get_node_or_nil({x=pos.x,y=pos.y+1,z=pos.z}) - if above ~= nil and above.name == 'air' then - minetest.env:add_node(pos,{type="node",name='4seasons:ice_flowing'}) - end - end - elseif CURRENT_SEASON == 2 then - if node.name == '4seasons:grass_winter' or node.name == '4seasons:grass_autumn' or node.name == 'default:dirt_with_grass' then - minetest.env:add_node(pos,{type="node",name='4seasons:grass_spring'}) - elseif node.name == '4seasons:leaves_winter' or node.name == '4seasons:leaves_autumn' or node.name == 'default:leaves' then - minetest.env:add_node(pos,{type="node",name='4seasons:leaves_spring'}) - elseif node.name == '4seasons:desertsand_winter' then - minetest.env:add_node(pos,{type="node",name='default:desert_sand'}) - elseif node.name == '4seasons:sand_winter' then - minetest.env:add_node(pos,{type="node",name='default:sand'}) - elseif node.name == '4seasons:cactus_winter' then - minetest.env:add_node(pos,{type="node",name='default:cactus'}) - elseif node.name == '4seasons:ice_source' then - minetest.env:add_node(pos,{type="node",name='default:water_source'}) - elseif node.name == '4seasons:ice_flowing' then - minetest.env:add_node(pos,{type="node",name='default:water_flowing'}) - end - elseif CURRENT_SEASON == 3 then - if node.name == '4seasons:leaves_spring' or node.name == '4seasons:leaves_winter' or node.name == '4seasons:leaves_autumn' then - minetest.env:add_node(pos,{type="node",name='default:leaves'}) - elseif node.name == '4seasons:grass_spring' or node.name == '4seasons:grass_winter' or node.name == '4seasons:grass_autumn' then - minetest.env:add_node(pos,{type="node",name='default:dirt_with_grass'}) - elseif node.name == '4seasons:desertsand_winter' then - minetest.env:add_node(pos,{type="node",name='default:desert_sand'}) - elseif node.name == '4seasons:sand_winter' then - minetest.env:add_node(pos,{type="node",name='default:sand'}) - elseif node.name == '4seasons:cactus_winter' then - minetest.env:add_node(pos,{type="node",name='default:cactus'}) - elseif node.name == '4seasons:ice_source' then - minetest.env:add_node(pos,{type="node",name='default:water_source'}) - elseif node.name == '4seasons:ice_flowing' then - minetest.env:add_node(pos,{type="node",name='default:water_flowing'}) - end - elseif CURRENT_SEASON == 4 then - if node.name == 'default:leaves' or node.name == '4seasons:leaves_spring' or node.name == '4seasons:leaves_winter' then - minetest.env:add_node(pos,{type="node",name='4seasons:leaves_autumn'}) - elseif node.name == 'default:dirt_with_grass' or node.name == '4seasons:grass_spring' or node.name == '4seasons:grass_winter' then - minetest.env:add_node(pos,{type="node",name='4seasons:grass_autumn'}) - elseif node.name == '4seasons:desertsand_winter' then - minetest.env:add_node(pos,{type="node",name='default:desert_sand'}) - elseif node.name == '4seasons:sand_winter' then - minetest.env:add_node(pos,{type="node",name='default:sand'}) - elseif node.name == '4seasons:cactus_winter' then - minetest.env:add_node(pos,{type="node",name='default:cactus'}) - elseif node.name == '4seasons:ice_source' then - minetest.env:add_node(pos,{type="node",name='default:water_source'}) - elseif node.name == '4seasons:ice_flowing' then - minetest.env:add_node(pos,{type="node",name='default:water_flowing'}) - end - end - end -}) - --- *********************************************************************************** --- BIRDS SPRING/SUMMER ************************************************** --- *********************************************************************************** -if BIRDS == true then - local bird = {} - bird.sounds = {} - bird_sound = function(p) - local wanted_sound = {name="bird", gain=0.6} - bird.sounds[minetest.hash_node_position(p)] = { - handle = minetest.sound_play(wanted_sound, {pos=p, loop=true}), - name = wanted_sound.name, } - end - - bird_stop = function(p) - local sound = bird.sounds[minetest.hash_node_position(p)] - if sound ~= nil then - minetest.sound_stop(sound.handle) - bird.sounds[minetest.hash_node_position(p)] = nil - end - end - minetest.register_on_dignode(function(p, node) - if node.name == "4seasons:bird" then - bird_stop(p) - - end - end) - minetest.register_abm({ - nodenames = { "4seasons:leaves_spring",'default:leaves' }, - interval = NATURE_GROW_INTERVAL, - chance = 200, - action = function(pos, node, active_object_count, active_object_count_wider) - local air = { x=pos.x, y=pos.y+1,z=pos.z } - local is_air = minetest.env:get_node_or_nil(air) - if is_air ~= nil and is_air.name == 'air' then - minetest.env:add_node(air,{type="node",name='4seasons:bird'}) - bird_sound(air) - end - end - }) - minetest.register_abm({ - nodenames = {'4seasons:bird' }, - interval = NATURE_GROW_INTERVAL, - chance = 2, - action = function(pos, node, active_object_count, active_object_count_wider) - minetest.env:remove_node(pos) - bird_stop(pos) - end - }) -end - --- *********************************************************************************** --- SLIMTREES ************************************************** --- *********************************************************************************** -minetest.register_abm({ - nodenames = { "4seasons:slimtree" }, - interval = 120, - chance = 1, - - action = function(pos, node, active_object_count, active_object_count_wider) - minetest.env:add_node({x=pos.x,y=pos.y,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+1,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+2,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - - minetest.env:add_node({x=pos.x,y=pos.y+3,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x+1,y=pos.y+3,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x-1,y=pos.y+3,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+3,z=pos.z+1},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+3,z=pos.z-1},{type="node",name="default:leaves"}) - - - minetest.env:add_node({x=pos.x,y=pos.y+4,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x+1,y=pos.y+4,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x-1,y=pos.y+4,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+4,z=pos.z+1},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+4,z=pos.z-1},{type="node",name="default:leaves"}) - - - minetest.env:add_node({x=pos.x,y=pos.y+5,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x+1,y=pos.y+5,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x-1,y=pos.y+5,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+5,z=pos.z+1},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+5,z=pos.z-1},{type="node",name="default:leaves"}) - - minetest.env:add_node({x=pos.x,y=pos.y+6,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x+1,y=pos.y+6,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x-1,y=pos.y+6,z=pos.z},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+6,z=pos.z+1},{type="node",name="default:leaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+6,z=pos.z-1},{type="node",name="default:leaves"}) - end -}) --- *********************************************************************************** --- PALM TREES ************************************************** --- *********************************************************************************** -minetest.register_abm({ - nodenames = { "4seasons:palmtree" }, - interval = 120, - chance = 1, - - action = function(pos, node, active_object_count, active_object_count_wider) - minetest.env:add_node({x=pos.x,y=pos.y,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+1,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+2,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+3,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+4,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+5,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+6,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+7,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x,y=pos.y+8,z=pos.z},{type="node",name="4seasons:slimtree_wood"}) - minetest.env:add_node({x=pos.x+2,y=pos.y+8,z=pos.z},{type="node",name="4seasons:palmleaves"}) - minetest.env:add_node({x=pos.x-2,y=pos.y+8,z=pos.z},{type="node",name="4seasons:palmleaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+8,z=pos.z+2},{type="node",name="4seasons:palmleaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+8,z=pos.z-2},{type="node",name="4seasons:palmleaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+9,z=pos.z},{type="node",name="4seasons:palmleaves"}) - minetest.env:add_node({x=pos.x+1,y=pos.y+9,z=pos.z},{type="node",name="4seasons:palmleaves"}) - minetest.env:add_node({x=pos.x-1,y=pos.y+9,z=pos.z},{type="node",name="4seasons:palmleaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+9,z=pos.z+1},{type="node",name="4seasons:palmleaves"}) - minetest.env:add_node({x=pos.x,y=pos.y+9,z=pos.z-1},{type="node",name="4seasons:palmleaves"}) - end -}) - --- *********************************************************************************** --- NODES ************************************************** --- *********************************************************************************** - -PLANTLIKE('palmtree','Palmtree Sapling','veg') -PLANTLIKE('slimtree','Slimtree Sapling','veg') -PLANTLIKE('bird','Bird','veg') -minetest.register_node("4seasons:palmleaves", { - description = "Rail", - drawtype = "raillike", - tile_images = {"4seasons_palmleaves.png", "4seasons_palmleaves_top.png", "4seasons_palmleaves_top.png", "4seasons_palmleaves_top.png"}, - inventory_image = "4seasons_palmleaves.png", - wield_image = "4seasons_palmleaves.png", - paramtype = "light", - is_ground_content = true, - walkable = false, - selection_box = { - type = "fixed", - --fixed = - }, - groups = {bendy=2,snappy=1,dig_immediate=2}, -}) -minetest.register_node("4seasons:slimtree_wood", { - description = "Slimtree", - drawtype = "fencelike", - tile_images = {"default_tree.png"}, --- inventory_image = "default_tree.png", --- wield_image = "default_tree.png", - paramtype = "light", - is_ground_content = true, - selection_box = { - type = "fixed", - fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7}, - }, - groups = {tree=1,snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=2}, - sounds = default.node_sound_wood_defaults(), - drop = 'default:fence_wood', -}) -minetest.register_node("4seasons:ice_source", { - description = "Ice", - tile_images = {"4seasons_ice.png"}, - is_ground_content = true, - groups = {snappy=2,choppy=3}, - sounds = default.node_sound_stone_defaults(), -}) -minetest.register_node("4seasons:ice_flowing", { - description = "Ice", - tile_images = {"4seasons_ice.png"}, - is_ground_content = true, - groups = {snappy=2,choppy=3}, - sounds = default.node_sound_stone_defaults(), -}) -minetest.register_node("4seasons:leaves_autumn", { - description = "Leaves", - drawtype = "allfaces_optional", - visual_scale = 1.3, - tile_images = {"4seasons_leaves_autumn.png"}, - paramtype = "light", - groups = {snappy=3, leafdecay=3, flammable=2}, - drop = { - max_items = 1, items = { - {items = {'default:sapling'}, rarity = 20,}, - {items = {'4seasons:leaves_autumn'},} - }}, - sounds = default.node_sound_leaves_defaults(), -}) -minetest.register_node("4seasons:leaves_spring", { - description = "Leaves", - drawtype = "allfaces_optional", - visual_scale = 1.3, - tile_images = {"4seasons_leaves_spring.png"}, - paramtype = "light", - groups = {snappy=3, leafdecay=3, flammable=2}, - drop = { - max_items = 1, items = { - {items = {'default:sapling'}, rarity = 20,}, - {items = {'4seasons:leaves_spring'},} - }}, - sounds = default.node_sound_leaves_defaults(), -}) -minetest.register_node("4seasons:grass_spring", { - description = "Dirt with snow", - tile_images = {"4seasons_grass_spring.png", "default_dirt.png", "default_dirt.png^4seasons_grass_spring_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = 'default:dirt', - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), -}) -minetest.register_node("4seasons:grass_autumn", { - description = "Dirt with snow", - tile_images = {"4seasons_grass_autumn.png", "default_dirt.png", "default_dirt.png^4seasons_grass_autumn_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = 'default:dirt', - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), -}) -minetest.register_node("4seasons:grass_winter", { - description = "Dirt with snow", - tile_images = {"4seasons_snow.png", "default_dirt.png", "default_dirt.png^4seasons_grass_w_snow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = 'default:dirt', - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), -}) -minetest.register_node("4seasons:leaves_winter", { - description = "Leaves", - drawtype = "allfaces_optional", - visual_scale = 1.3, - tile_images = {"4seasons_leaves_with_snow.png"}, - paramtype = "light", - groups = {snappy=3, leafdecay=3, flammable=2}, - drop = { - max_items = 1, items = { - {items = {'default:sapling'}, rarity = 20,}, - {items = {'4seasons:leaves_winter'},} - }}, - sounds = default.node_sound_leaves_defaults(), -}) -minetest.register_node("4seasons:cactus_winter", { - description = "Cactus", - tile_images = {"4seasons_cactus_wsnow_top.png", "4seasons_cactus_wsnow_top.png", "4seasons_cactus_wsnow_side.png"}, - is_ground_content = true, - groups = {snappy=2,choppy=3,flammable=2}, - sounds = default.node_sound_wood_defaults(), -}) -minetest.register_node("4seasons:sand_winter", { - description = "Sand with snow", - tile_images = {"4seasons_snow.png", "default_sand.png", "default_sand.png^4seasons_sand_w_snow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = 'default:sand', - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), -}) -minetest.register_node("4seasons:desertsand_winter", { - description = "Desert Sand with snow", - tile_images = {"4seasons_snow.png", "default_desert_sand.png", "default_desert_sand.png^4seasons_desertsand_w_snow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = 'default:desert_sand', - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), -}) - diff --git a/ambience/textures/4seasons_bird.png b/ambience/textures/4seasons_bird.png deleted file mode 100644 index b6cd64b577ef5067f808896d0558ed5d0769c6ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4254 zcmeHKdrVtZ9R6+}w=I`GpryU*%4nIqI%XM+AZBFNwGL2;y5SxP4nY$pG1-EdrZGC) zA8K@JT(WFRbX!c+s3d0M5*aZjZp>xLf{u-`tp!#JeLzd!EiKn}3CXgAwl4f<&&|2# zp7Z_g`M&f0?#(^-!{=JI3v-k?0EA7Ah8Gg8I$8N-;@o30`4bJ<@$_~BnB;M4=-Xq7 z5y64RJv{&=O;!S5^wEhy-WyHN8hN+5QjwM#*;c;~kZfo&=y&cG5Ne6VoruVmtOHpG zvJPY&$U5*pcYs)p^*40>LW;#KV*yQWlL)C$V9Jue6moyk_gVL?bn~x@07Kh18xp&M zYa*!#l_fN|h{Nld@-p#&?&v$66RAXSQi18PGp7b~ru{tO;Dxbku1J_+f=*)0?}VmW z2d8^UE>Xi3rK|zT(u5{;>@hkSjC8gV}$SOQB+Kv05dWG2`7#UjVjgc_ppa@ zz_{bsaev5L7Yxa&hlVX!r^q8J68krfBY+0^9VmD|;Lpi?%rEj*UqJoNBd_KcDfeo4 z#p3Iew-MqHxank|icr{13t){2a96Vn95oBMJ|FPo`II95QwnMu59n)3N=>>_iCCCN zfJ zX2NMFg5DU~w4>-SSTS+Oj&q|njK>8ayz!qDbJu%Y-~K$3l05-tBw+uc!<$9<+K&`+ znaW|Ghk4pgOwY`NWP4Cicndi!57cE!lyA}C((jg=l6?2it)HGxOP&;$Q3{5KZFvjs zu-NAhV|4s3tTqqkJQ2v3>?q(m5sC4@=d-cdK;!u?J=5`S>r%RvFXL$)=r$b@a9I^b zL5^Up+2Vq2HVjW7f;cw{C1r+`WUv_HBjyf3DCDB7M$4O9EK2+SXDr~?a|?{FI=m#H zqHx)LnD;V>E`=cFETCRF12I1e?|cLycbExMr36bXJYCsx=;AU#x;Cu?HPuCYn`>Gs z2vUeG`oI-Lk?Y~3PCA4VX%HTV46$4dLfklEb&)5V+dk+`M|wY=_8FjMoK1x^?-e$i z&G2&9fCxwNi0C&wwcd<1B0gArIrwrq?iZ@gG#@$~Q8zzJjr;myT;QA$%}q#T01Eiz%z!)o=HP6)JWV zBKBYCEdK+IYAeJ92^NnJhLT76M-Y7N@WYWO#jKcuhOLb|bXEEqy`d9jMGSLLKhL~a zLxD|caMrBA4OYeXY}H!^n_u`C>_pi6_dW^&64%15d{Wp6*Hf2J*920n^%VgH{ QG$;E_#uh{WlkM;Q3!Ey3xBvhE diff --git a/us.stackdump b/us.stackdump deleted file mode 100644 index a5de3a5..0000000 --- a/us.stackdump +++ /dev/null @@ -1,18 +0,0 @@ -MSYS-1.0.12 Build:2011-07-20 17:52 -Exception: STATUS_ACCESS_VIOLATION at eip=68085E34 -eax=68560000 ebx=00006D34 ecx=00001B4D edx=00000000 esi=00000000 edi=68560000 -ebp=0022FE48 esp=0022FE3C program=us -cs=001B ds=0023 es=0023 fs=003B gs=0000 ss=0023 -Stack trace: -Frame Function Args -0022FE48 68085E34 (68560000, 00000000, 00006D34, 00000004) -0022FE98 68001CB0 (005D2C52, 00000001, 0022FEE8, 680044EA) -0022FEE8 680045C7 (00000000, 00000000, 0022FF28, 00405894) -0022FF08 68004C5F (00401BB0, 00000000, 00000000, 00000000) -0022FF28 68004C98 (00000000, 00000000, 00000000, 00000000) -0022FF58 004057A4 (00401BB0, 00000000, 00000000, 00000000) -0022FF88 0040103D (7FFDC000, 0022FFD4, 776BE4B6, 7FFDC000) -0022FF94 772D4911 (7FFDC000, F7651B21, 00000000, 00000000) -0022FFD4 776BE4B6 (00401000, 7FFDC000, 00000000, 00000000) -0022FFEC 776BE489 (00401000, 7FFDC000, 00000000, 78746341) -End of stack trace \ No newline at end of file