aboutsummaryrefslogtreecommitdiff
path: root/games/minimal/mods/default/textures/default_dirt.png
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2015-03-12 11:27:28 +0100
committerLoic Blot <loic.blot@unix-experience.fr>2015-03-12 11:27:28 +0100
commitafb19f3a1f73d36207b8b64e4eed5846e78f5a32 (patch)
tree2088237d52a9d21d091f0e7a11c3ca4cf9528df4 /games/minimal/mods/default/textures/default_dirt.png
parent3067d782169a79ab3b13e8ba3d445b60d0d477c5 (diff)
downloadminetest-afb19f3a1f73d36207b8b64e4eed5846e78f5a32.tar.gz
minetest-afb19f3a1f73d36207b8b64e4eed5846e78f5a32.tar.bz2
minetest-afb19f3a1f73d36207b8b64e4eed5846e78f5a32.zip
handleCommand_Breath mustn't update breath is player is dead. A dead player doesn't breath.
Add Player::isDead function to check player is dead
Diffstat (limited to 'games/minimal/mods/default/textures/default_dirt.png')
0 files changed, 0 insertions, 0 deletions
147' href='#n147'>147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
/*
** $Id: loslib.c,v 1.19.1.3 2008/01/18 16:38:18 roberto Exp $
** Standard Operating System library
** See Copyright Notice in lua.h
*/


#include <errno.h>
#include <locale.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

#define loslib_c
#define LUA_LIB

#include "lua.h"

#include "lauxlib.h"
#include "lualib.h"


static int os_pushresult (lua_State *L, int i, const char *filename) {