From 919e29e2806ead1798d55bd6749691de3f06c47f Mon Sep 17 00:00:00 2001 From: FlavioJS Date: Mon, 7 May 2007 05:18:39 +0000 Subject: * Fixed warpwaitingpc not working (bug introduced in r10471). there was a "sd != NULL" where it should be "sd == NULL" git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10499 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/chat.c | 4 ++-- src/map/script.c | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/map/chat.c b/src/map/chat.c index e66ed7dc3..92901c86e 100644 --- a/src/map/chat.c +++ b/src/map/chat.c @@ -149,7 +149,7 @@ int chat_leavechat(struct map_session_data* sd) cd->users--; pc_setchatid(sd, 0); - if( cd->users == 0 && (*cd->owner)->type==BL_PC ) + if( cd->users == 0 && (*cd->owner)->type == BL_PC ) {// Delete empty chatroom clif_clearchat(cd, 0); map_delobject(cd->bl.id); @@ -158,7 +158,7 @@ int chat_leavechat(struct map_session_data* sd) for( i = leavechar; i < cd->users; i++ ) cd->usersd[i] = cd->usersd[i + 1]; - if( leavechar == 0 && (*cd->owner)->type==BL_PC ) + if( leavechar == 0 && (*cd->owner)->type == BL_PC ) { //Adjust Chat location after owner has been changed. map_delblock( &cd->bl ); diff --git a/src/map/script.c b/src/map/script.c index 9c46aa109..1b996ebcb 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -6972,8 +6972,8 @@ BUILDIN_FUNC(getgdskilllv) } /// Returns the 'basic_skill_check' setting. -/// This config determines if the server check the skill level of NV_BASIC -/// before alowing the basic actions. +/// This config determines if the server checks the skill level of NV_BASIC +/// before allowing the basic actions. /// /// basicskillcheck() -> BUILDIN_FUNC(basicskillcheck) @@ -8660,15 +8660,15 @@ BUILDIN_FUNC(waitingroom) if( script_hasdata(st,5) ) { - struct script_data* data = script_getdata(st, 5); - get_val(st, data); - if( data_isstring(data) ) - {// ,"", + struct script_data* last = script_getdata(st, 5); + get_val(st, last); + if( data_isstring(last) ) + {// ,,"" trigger = script_getnum(st, 4); ev = script_getstr(st, 5); } else - {// ,,"" + {// ,"", ev = script_getstr(st, 4); trigger=script_getnum(st,5); } @@ -8841,7 +8841,7 @@ BUILDIN_FUNC(warpwaitingpc) for( i = 0; i < n && cd->users > 0; i++ ) { sd = cd->usersd[0]; - if( sd != NULL ) + if( sd == NULL ) { ShowDebug("script:warpwaitingpc: no user in chat room position 0 (cd->users=%d,%d/%d)\n", cd->users, i, n); mapreg_setreg(add_str("$@warpwaitingpc")+(i<<24), 0); -- cgit v1.2.3-70-g09d2