We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05bd7c4 commit 64e7df7Copy full SHA for 64e7df7
src/tasks/queue_task.rs
@@ -68,8 +68,12 @@ impl Task for QueueTask {
68
let group_size = group.players.len() as i32;
69
70
if group_size <= available_slots {
71
+ info!("Sending group ({})", available_slots);
72
+
73
available_slots -= group_size;
74
75
+ info!("New sending group ({})", available_slots);
76
77
self.epsilon_api
78
.send(SendToServer(group, String::from(instance.get_name())));
79
}
0 commit comments