Hotboot issue
< Newer Topic
:: Older Topic >
Pages:<< prev 1 next >>
#1 Jan 4, 2025 8:27 pm
Geomancer
GroupAdministrators
Posts1,982
JoinedJul 26, 2005
So fresh download and running just for looking at issues.
Seems good just messing with stuff and didn't do much but a hotboot it drops link and won't let me reconnect because of mccp issue on the mud.
Seems good just messing with stuff and didn't do much but a hotboot it drops link and won't let me reconnect because of mccp issue on the mud.
#2 Jan 5, 2025 11:14 am
Geomancer
GroupAdministrators
Posts1,982
JoinedJul 26, 2005
in hotboot.cpp around line 708 find and change
to this
its never ending it and causes issues.
och->save( ); if( !argument.empty( ) && str_cmp( argument, "debug" ) ) { d->write( "\r\nThe flow of time is halted momentarily as the world is reshaped!\r\n" ); if( d->is_compressing ) d->compressEnd( ); }
to this
och->save( ); if( d->is_compressing ) d->compressEnd( ); if( !argument.empty( ) && str_cmp( argument, "debug" ) ) d->write( "\r\nThe flow of time is halted momentarily as the world is reshaped!\r\n" );
its never ending it and causes issues.
#3 Jan 6, 2025 2:29 pm
Black Hand
GroupAdministrators
Posts3,710
JoinedJan 1, 2002
That whole debug sequence needed more than just a simple fix so I've reworked it and now it appears to be functioning correctly again.
Pages:<< prev 1 next >>