Sokomine / travelnet

network of teleporter-boxes that allow easy travelling to other boxes on the same network (Mod for Minetest)
GNU General Public License v3.0
30 stars 52 forks source link

I added the elevator and some textures in both 16x16 and 512x512 for it. #2

Closed kpoppel closed 11 years ago

kpoppel commented 11 years ago

This adds the elevator I talked about at the forum. I hope you like it and want to include it in your mod.

kpoppel commented 11 years ago

One extra thing: -- check if the box has at the other end has been removed. local node2 = minetest.env:get_node( target_pos ); if( node2 ~= nil and node2.name ~= 'ignore' and node2.name ~= 'travelnet:travelnet' and node2.name ~= 'travelnet:elevator') then

The last line needs to have the travelnet_elevator added or the mod will remove the stations again of course. I forgot that one