asumagic / kag-staging

Issue tracker for the KAG staging build
6 stars 0 forks source link

trying to concatenate CRules.isWarmup() to a string crashes server #126

Open bunniewormy opened 2 years ago

bunniewormy commented 2 years ago

Doesn't happen on normal build

What works fine:

bool wm = true; printf('d' + wm);

printf('d' + getRules().get_bool("tutorial"));

What crashes:

printf('d' + getRules().isWarmup());

bool wm = getRules().isWarmup(); printf('d' + wm);

'uwu' + getRules().isWarmup();

This happens both when done in a script or by using console