summaryrefslogtreecommitdiff
path: root/src/environment.h
diff options
context:
space:
mode:
authorMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>2012-11-12 16:35:10 +0200
committerPerttu Ahola <celeron55@gmail.com>2012-11-25 19:14:24 +0200
commit756db8174aa6a05eb998cfcec8eb5127053c5ea9 (patch)
treeaf1c77b7bf4e6862095ef3524a995b0de49e606b /src/environment.h
parentfa67b46c042ed4df97102dabf9f1e7bc454b2acb (diff)
downloadminetest-756db8174aa6a05eb998cfcec8eb5127053c5ea9.tar.gz
minetest-756db8174aa6a05eb998cfcec8eb5127053c5ea9.tar.bz2
minetest-756db8174aa6a05eb998cfcec8eb5127053c5ea9.zip
A bunch of fixes
No longer hide players who are dead. With models, a death animation should be used instead Some changes requested by celeron55 Rename a lot of things in the code, and use better lua api function names Minor code corrections Bump protocol version up, since the models / animations / attachments code creates new client<->server messages
Diffstat (limited to 'src/environment.h')
-rw-r--r--src/environment.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/environment.h b/src/environment.h
index 042229038..e2028d614 100644
--- a/src/environment.h
+++ b/src/environment.h
@@ -463,6 +463,8 @@ public:
// Get event from queue. CEE_NONE is returned if queue is empty.
ClientEnvEvent getClientEvent();
+
+ std::vector<core::vector2d<int> > attachment_list; // X is child ID, Y is parent ID
private:
ClientMap *m_map;