in spectator/util.h [6:14]
T restrict(T amount, T min, T max) { auto r = amount; if (r > max) { r = max; } else if (r < min) { r = min; } return r; }