Commit 8e8fbcdc authored by nanahira's avatar nanahira

Merge branch 'master' of git.mycard.moe:mycard/srvpro

parents 5a5a8685 714f8bb0
...@@ -71,7 +71,8 @@ ...@@ -71,7 +71,8 @@
"enabled": true, "enabled": true,
"get": false, "get": false,
"interval": 30000, "interval": 30000,
"interval_ingame": 120000 "interval_ingame": 120000,
"prefix": "Tip: "
}, },
"dialogues": { "dialogues": {
"enabled": true, "enabled": true,
......
...@@ -3085,11 +3085,11 @@ wait_room_start_arena = (room)-> ...@@ -3085,11 +3085,11 @@ wait_room_start_arena = (room)->
#tip #tip
ygopro.stoc_send_random_tip = (client)-> ygopro.stoc_send_random_tip = (client)->
if settings.modules.tips.enabled && tips.tips.length if settings.modules.tips.enabled && tips.tips.length
ygopro.stoc_send_chat(client, "Tip: " + tips.tips[Math.floor(Math.random() * tips.tips.length)]) ygopro.stoc_send_chat(client, "#{settings.modules.tips.prefix}#{tips.tips[Math.floor(Math.random() * tips.tips.length)]}")
await return await return
ygopro.stoc_send_random_tip_to_room = (room)-> ygopro.stoc_send_random_tip_to_room = (room)->
if settings.modules.tips.enabled && tips.tips.length if settings.modules.tips.enabled && tips.tips.length
ygopro.stoc_send_chat_to_room(room, "Tip: " + tips.tips[Math.floor(Math.random() * tips.tips.length)]) ygopro.stoc_send_chat_to_room(room, "#{settings.modules.tips.prefix}#{tips.tips[Math.floor(Math.random() * tips.tips.length)]}")
await return await return
loadRemoteData = global.loadRemoteData = (loadObject, name, url)-> loadRemoteData = global.loadRemoteData = (loadObject, name, url)->
......
...@@ -4104,13 +4104,13 @@ ...@@ -4104,13 +4104,13 @@
//tip //tip
ygopro.stoc_send_random_tip = async function(client) { ygopro.stoc_send_random_tip = async function(client) {
if (settings.modules.tips.enabled && tips.tips.length) { if (settings.modules.tips.enabled && tips.tips.length) {
ygopro.stoc_send_chat(client, "Tip: " + tips.tips[Math.floor(Math.random() * tips.tips.length)]); ygopro.stoc_send_chat(client, `${settings.modules.tips.prefix}${tips.tips[Math.floor(Math.random() * tips.tips.length)]}`);
} }
}; };
ygopro.stoc_send_random_tip_to_room = async function(room) { ygopro.stoc_send_random_tip_to_room = async function(room) {
if (settings.modules.tips.enabled && tips.tips.length) { if (settings.modules.tips.enabled && tips.tips.length) {
ygopro.stoc_send_chat_to_room(room, "Tip: " + tips.tips[Math.floor(Math.random() * tips.tips.length)]); ygopro.stoc_send_chat_to_room(room, `${settings.modules.tips.prefix}${tips.tips[Math.floor(Math.random() * tips.tips.length)]}`);
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment