aboutsummaryrefslogtreecommitdiff
path: root/assets/manual_img/Bildschirmfoto_2016-09-17_09-48-54.png
diff options
context:
space:
mode:
authororwell96 <mono96.mml@gmail.com>2017-03-16 22:04:32 +0100
committerorwell96 <mono96.mml@gmail.com>2017-03-16 22:04:32 +0100
commita091ac2e1da07b442c8f58237667287714adc838 (patch)
tree8959739c792488df34d06c380baccac4e4791bf8 /assets/manual_img/Bildschirmfoto_2016-09-17_09-48-54.png
parentba0e75a692cfe2a359dc74891548d43fb2de8c21 (diff)
downloadadvtrains-a091ac2e1da07b442c8f58237667287714adc838.tar.gz
advtrains-a091ac2e1da07b442c8f58237667287714adc838.tar.bz2
advtrains-a091ac2e1da07b442c8f58237667287714adc838.zip
Fix privilege enforcement being useless
Privilege violations caused an error message but didn't abort the operation
Diffstat (limited to 'assets/manual_img/Bildschirmfoto_2016-09-17_09-48-54.png')
0 files changed, 0 insertions, 0 deletions
">5, ACTIVEOBJECT_TYPE_MOBV2 = 6, // End deprecated stuff ACTIVEOBJECT_TYPE_LUAENTITY = 7, // Special type, not stored as a static object ACTIVEOBJECT_TYPE_PLAYER = 100, // Special type, only exists as CAO ACTIVEOBJECT_TYPE_GENERIC = 101, }; // Other types are defined in content_object.h struct ActiveObjectMessage { ActiveObjectMessage(u16 id_, bool reliable_=true, std::string data_=""): id(id_), reliable(reliable_), datastring(data_) {} u16 id; bool reliable; std::string datastring; }; /* Parent class for ServerActiveObject and ClientActiveObject */ class ActiveObject { public: ActiveObject(u16 id): m_id(id)