mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-09 20:36:15 +00:00
Fix more bugs
The map starts now though you don't get teleported to it.
This commit is contained in:
parent
0eb14ab41c
commit
68f9b82b96
1 changed files with 2 additions and 2 deletions
|
|
@ -171,8 +171,8 @@ core.register_chatcommand("start", {
|
|||
params = "<map>",
|
||||
privs = {match_manager = true},
|
||||
description = "Start the match",
|
||||
func = function()
|
||||
map_data = place_map(map)
|
||||
func = function(_, param)
|
||||
map_data = place_map(param)
|
||||
remove_barrier(map_data.size_x, map_data.barrier_level, map_data.size_z)
|
||||
core.chat_send_all(core.colorize("green", "Match started!"))
|
||||
alive_players = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue