From: SourceForge.net <no...@so...> - 2008-07-08 15:31:17
|
Bugs item #2013582, was opened at 2008-07-09 00:16 Message generated for change (Comment added) made by akym You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=380760&aid=2013582&group_id=24184 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Server Group: None >Status: Closed Resolution: None Priority: 5 Private: No Submitted By: skomp (rvmassow) Assigned to: Nobody/Anonymous (nobody) Summary: really bad typo in attentionto... Initial Comment: in file: player.cpp 522: else if ( ! std::strcmp( at_team_name, "l" ) ) 523: { 524: at_side = rcss::pcom::LEFT_SIDE; 525: } 526: else if ( ! std::strcmp( at_team_name, "l" ) ) 527: { 528: at_side = rcss::pcom::RIGHT_SIDE; 529: } line 526 should probably be changed into: else if ( ! std::strcmp( at_team_name, "r" ) ) otherwise (attentioto r 13) will result in at_team = UNKNOWN_TEAM ---------------------------------------------------------------------- >Comment By: Hidehisa Akiyama (akym) Date: 2008-07-09 00:31 Message: Logged In: YES user_id=595484 Originator: NO This hand-coded parser has been no longer used. So, it is not necessary to fix this typo in the current release. This typo will be fixed from next release. Thanks for the report. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=380760&aid=2013582&group_id=24184 |