Subj : src/sbbs3/useredit.cpp To : Git commit to main/sbbs/master From : Rob Swindell Date : Sun Mar 06 2022 04:06 pm https://gitlab.synchro.net/main/sbbs/-/commit/d8c36d9d898830fa0b8456f9 Modified Files: src/sbbs3/useredit.cpp Log Message: Remove unnecessary current user (co-sysop) level/flag checks As Andre pointed out, these checks perform no function because a user with a level lower than the user being edited cannot enter the related command-key anyway. This was just effectively dead code that was held-over from ancient SBBS days, seemingly before I learned to effectively use the || operator: if(!(atoi(str)>useron.level && console&CON_R_INPUT)) :-) Fixes issue #361 .