summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp6
-rw-r--r--src/nodemetadata.cpp6
2 files changed, 9 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 7ec542533..b5247b907 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -113,6 +113,10 @@ Gaming ideas:
- Random NPC traders. what else?
+Game content:
+-------------
+- Glass blocks
+
Documentation:
--------------
@@ -163,6 +167,8 @@ TODO: Flowing water animation
SUGG: Draw cubes in inventory directly with 3D drawing commands, so that
animating them is easier.
+SUGG: Option for enabling proper alpha channel for textures
+
Configuration:
--------------
diff --git a/src/nodemetadata.cpp b/src/nodemetadata.cpp
index 8b21856de..be21622d3 100644
--- a/src/nodemetadata.cpp
+++ b/src/nodemetadata.cpp
@@ -172,10 +172,10 @@ bool ChestNodeMetadata::nodeRemovalDisabled()
*/
InventoryList *list = m_inventory->getList("0");
if(list == NULL)
- return true;
+ return false;
if(list->getUsedSlots() == 0)
- return true;
- return false;
+ return false;
+ return true;
}
/*