Changeset - r783:105528ee05ec
[Not reviewed]
master
0 1 0
truelight - 19 years ago 2004-12-23 15:33:47
truelight@openttd.org
(svn r1250) -Fix: a dedicated server could not kick user number 1
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
console_cmds.c
Show inline comments
 
@@ -190,7 +190,7 @@ DEF_CONSOLE_CMD(ConKick)
 

	
 
	if (argc == 2) {
 
		uint32 index = atoi(argv[1]);
 
		if (index == NETWORK_SERVER_INDEX) {
 
		if (index == NETWORK_SERVER_INDEX && !_network_dedicated) {
 
			IConsolePrint(_iconsole_color_default, "Silly boy, you can not kick yourself!");
 
			return NULL;
 
		}
0 comments (0 inline, 0 general)