aboutsummaryrefslogtreecommitdiff
path: root/build/android/src/main/res/drawable-xhdpi
diff options
context:
space:
mode:
authorWayward One <calmthefirewithin@gmail.com>2017-03-15 10:42:47 -0400
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-03-15 15:42:47 +0100
commit39fa249f91b7cb9031ed43776b07155755f76cae (patch)
treeee429e79b9cb299d7a7266253c54071f0895315d /build/android/src/main/res/drawable-xhdpi
parentb539985ab827c2eb025ecb28cf1a97bdd3c75d58 (diff)
downloadminetest-39fa249f91b7cb9031ed43776b07155755f76cae.tar.gz
minetest-39fa249f91b7cb9031ed43776b07155755f76cae.tar.bz2
minetest-39fa249f91b7cb9031ed43776b07155755f76cae.zip
Fix undefined references (#5400)
Diffstat (limited to 'build/android/src/main/res/drawable-xhdpi')
0 files changed, 0 insertions, 0 deletions
span class="hl slc">-- * mapgen: cause in next on_generate call -- * entity_step: spawn a entity and make it do error in on_step -- * globalstep: do error in next globalstep -- * immediate: cause right in chat handler -- -- errortypes defined are: -- * segv: make sigsegv happen -- * zerodivision: cause a division by zero to happen -- * exception: throw an exception if core.cause_error == nil or type(core.cause_error) ~= "function" then return end core.log("action", "WARNING: loading exception handler test module!") local exceptiondata = { tocause = "none", mapgen = false, entity_step = false, globalstep = false, } local exception_entity = { on_step = function(self, dtime) if exceptiondata.entity_step then core.cause_error(exceptiondata.tocause) end end,