1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-13 03:20:19 +02:00

first commit

This commit is contained in:
Vanessa Ezekowitz
2012-07-12 17:56:15 -04:00
commit 2d969cb9bf
174 changed files with 5743 additions and 0 deletions

13
listnodes.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
echo "Node listing as of "`date` > nodes.txt
for i in *.lua; do
echo -e "\nIn $i:\n" >> nodes.txt
cat $i | grep "minetest.register_node(" | \
sed "s/minetest.register_node(.homedecor:/homedecor:/; s/., {//" | \
sort >> nodes.txt
done
less nodes.txt
rm -f nodes.txt