16 lines
280 B
Lua
16 lines
280 B
Lua
local bounty_time = {
|
|
[1]={
|
|
["season"]=1,
|
|
["start_time"]="2023-6-1 00:00:00",
|
|
["end_time"]="2023-7-1 00:00:00"
|
|
},
|
|
[2]={
|
|
["season"]=2,
|
|
["start_time"]="2023-7-1 00:00:00",
|
|
["end_time"]="2023-8-1 00:00:00"
|
|
}
|
|
}
|
|
local config = {
|
|
data=bounty_time,count=2
|
|
}
|
|
return config |