Page 1 of 1

Problem with latest SVN

Posted: 13 Feb 2013, 15:49
by kay
Image

Re: Problem with latest SVN

Posted: 13 Feb 2013, 16:34
by lututui99
windhamwong made a bad commit, to fix it, open src\Network\Receive\serverType0.pm and find this:

Code: Select all

my $entityElement $args->{type}if $args->{type};
Change to:

Code: Select all

my $entityElement = $args->{type} if $args->{type};

Re: Problem with latest SVN

Posted: 13 Feb 2013, 19:47
by kay
now I get:

Image

Re: Problem with latest SVN

Posted: 13 Feb 2013, 20:53
by kay
Image

this help?

Re: Problem with latest SVN

Posted: 13 Feb 2013, 21:28
by ChrstphrR
Noticed the same after updating

By the way, kay, pasting the "errors.txt" after the crash sends way less data, size-wise, while showing the text of the errors you see with even more detail (like, which build/version is the "latest").

My copy of src/Network/Receive/ServerType0.pm is slightly altered, so the line numbers don't quite correspond:

Contents of errors.txt:

Code: Select all

OpenKore version what-will-become-2.1
Network state = 5
Network handler = Network::DirectConnection
SVN revision: 8372
Loaded plugins:
  plugins/ignore.pl (Ignore Spammers!)
  plugins/xconf.pl (xConf)
  plugins/breakTime.pl (breakTime)
  plugins/macro.pl (macro)
  plugins/CR_Util.pl (CR Utilities)
  plugins/automapchange.pl (autoMapChange)
  plugins/Examples/busCommands.pl (busCommands)

Error message:
Can't store CODE items at /usr/lib/perl/5.14/Storable.pm line 256, at /home/oktest/openkore/openkore/trunk/plugins/CR_Util.pl line 142

Stack trace:
Can't store CODE items at /usr/lib/perl/5.14/Storable.pm line 256, at /home/oktest/openkore/openkore/trunk/plugins/CR_Util.pl line 142
 at /usr/lib/perl/5.14/Storable.pm line 38
	Storable::__ANON__('') called at /usr/lib/perl/5.14/Storable.pm line 266
	Storable::_store('CODE(0x1eef528)', 'Actor::You=HASH(0x4ad41b8)', 'creport.txt', 0) called at /usr/lib/perl/5.14/Storable.pm line 201
	Storable::store('Actor::You=HASH(0x4ad41b8)', 'creport.txt') called at /home/oktest/openkore/openkore/trunk/plugins/CR_Util.pl line 142
	CR_Util::CharaReport('creport', undef) called at src/Commands.pm line 294
	Commands::run('creport') called at src/functions.pl line 965
	main::parseInput('creport') called at src/functions.pl line 63
	main::mainLoop() called at src/Interface.pm line 75
	Interface::mainLoop('Interface::Console::Unix=HASH(0x2aa0fb0)') called at ./openkore.pl line 97
	main::__start() called at ./openkore.pl line 187

Appears to be an issue inside the "revolving_entity" routine.

Update: rev 8405 appears to resolve the issue - bugs fixed.

Re: Problem with latest SVN

Posted: 14 Feb 2013, 10:22
by kay
yup :) thanks for fixing it