aboutsummaryrefslogtreecommitdiff
path: root/textures/base/pack/crack_anylength.png
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2022-05-26 20:47:16 +0200
committersfan5 <sfan5@live.de>2022-05-29 14:00:19 +0200
commit85c824ed136269ee3ee0b650406ce80c8a60c014 (patch)
treed39b393312019156342b5448f29ebec916add320 /textures/base/pack/crack_anylength.png
parent998e4820c982c0ea9d257c15f93f1f21d85d6327 (diff)
downloadminetest-85c824ed136269ee3ee0b650406ce80c8a60c014.tar.gz
minetest-85c824ed136269ee3ee0b650406ce80c8a60c014.tar.bz2
minetest-85c824ed136269ee3ee0b650406ce80c8a60c014.zip
Make sure real disconnect reason isn't overwritten
bug introduced in 2f32044273d107e82fb1c35d4a0f616fa480cdf0
Diffstat (limited to 'textures/base/pack/crack_anylength.png')
0 files changed, 0 insertions, 0 deletions
n130' href='#n130'>130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
/*
** $Id: lmathlib.c,v 1.67.1.1 2007/12/27 13:02:25 roberto Exp $
** Standard mathematical library
** See Copyright Notice in lua.h
*/


#include <stdlib.h>
#include <math.h>

#define lmathlib_c
#define LUA_LIB

#include "lua.h"

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


#undef PI
#define PI (3.14159265358979323846)
#define RADIANS_PER_DEGREE (PI/180.0)