Skip to content

Commit

Permalink
Fix vip limit.
Browse files Browse the repository at this point in the history
  • Loading branch information
yubik9 committed Jan 16, 2013
1 parent 726b9b9 commit 0baab38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gmsv/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ int main( int argc , char** argv, char** env )
void mainloop( void )
{
print("初始化NPC...");
NPC_generateLoop( 1 );
NPC_generateLoop( 0 );
print("完成\n");
print("初始化signal1...");
signal(SIGUSR1,sigusr1);
Expand Down
4 changes: 2 additions & 2 deletions saac/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ int login_game_server( int ti , char *svname , char *svpas ,
if(checkvip==0 || checkvip!=55575556 * 2)
{
snprintf( result , resultlen , "failed" );
snprintf( retdata , retdatalen , "duplicate login" );
return 0;
snprintf( retdata , retdatalen , "duplicate login vip" );
//return 0;
}
#endif
{
Expand Down

0 comments on commit 0baab38

Please sign in to comment.