## ETPub PCR alpha hacks (etpub_pcr_ah) ## (C) 2006-2007 PatheticCockroach.com ## This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License ## Derivative works may only be done if they are distributed with their source code. ## ## The original etpub_pcr_ah source and binaries can be found around http://www.patheticcockroach.com/etserver/etpub_pcr.php ## ## Note : ETPub PCR alpha hacks are just small modifications for ETPub (http://www.etpub.org) There was a bug that prevents the storage of negative shrubbot lvls... here is a fix, finally ------------------------- MODIFICATION STARTS HERE src\game\g_shrubbot.c : (line 348) **** REPLACE // don't write level 0 users if(g_shrubbot_admins[i]->level < 1) continue; **** WITH // don't write level 0 users if(g_shrubbot_admins[i]->level == 0) continue;