mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-09 04:16:30 +00:00
* Refactor some of the code, multiple bug fixes * Fix something stupid * More bug fixes * LOTS OF STUFF * Make the sniper alot stronger and other changes * Prevent Players from respawning in the middle of a match * Fix stupid mistake * Small update * More updates * Remove minimap access.. and downgrade the sniper class
47 lines
505 B
Lua
47 lines
505 B
Lua
read_globals = {
|
|
"DIR_DELIM", "INIT",
|
|
|
|
"minetest", "core",
|
|
"dump", "dump2",
|
|
|
|
"api",
|
|
|
|
"Raycast",
|
|
"Settings",
|
|
"PseudoRandom",
|
|
"PerlinNoise",
|
|
"VoxelManip",
|
|
"SecureRandom",
|
|
"VoxelArea",
|
|
"PerlinNoiseMap",
|
|
"PcgRandom",
|
|
"ItemStack",
|
|
"AreaStore",
|
|
|
|
"vector",
|
|
|
|
table = {
|
|
fields = {
|
|
"copy",
|
|
"indexof",
|
|
"insert_all",
|
|
"key_value_swap",
|
|
"shuffle",
|
|
}
|
|
},
|
|
|
|
string = {
|
|
fields = {
|
|
"split",
|
|
"trim",
|
|
}
|
|
},
|
|
|
|
math = {
|
|
fields = {
|
|
"hypot",
|
|
"sign",
|
|
"factorial"
|
|
}
|
|
},
|
|
}
|