go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/experiments/matchmaker/pkg/sim/constants.go (about) 1 /* 2 3 Copyright (c) 2024 - Present. Will Charczuk. All rights reserved. 4 Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository. 5 6 */ 7 8 package sim 9 10 var targetPlayerCountsByHour = [24]int{ 11 0: 5000, 12 1: 4000, 13 2: 3000, 14 4: 2000, 15 5: 1000, 16 6: 2000, 17 7: 3000, 18 8: 5000, 19 9: 6000, 20 10: 7000, 21 11: 8000, 22 12: 9000, 23 13: 10000, 24 14: 11000, 25 15: 14000, 26 16: 16000, 27 17: 18000, 28 18: 19000, 29 19: 21000, 30 20: 18000, 31 21: 15000, 32 22: 12000, 33 23: 7500, 34 }