From becbc4d54f0754d2d8fbb986f17394dc2debbb26 Mon Sep 17 00:00:00 2001 From: Alice Ogeda Date: Sat, 19 Feb 2022 23:54:21 -0300 Subject: [PATCH] remove debug to test rngmgr; --- src/world/Manager/DebugCommandMgr.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/world/Manager/DebugCommandMgr.cpp b/src/world/Manager/DebugCommandMgr.cpp index 115cd714..28f261ce 100644 --- a/src/world/Manager/DebugCommandMgr.cpp +++ b/src/world/Manager/DebugCommandMgr.cpp @@ -178,15 +178,6 @@ void DebugCommandMgr::set( char* data, Entity::Player& player, std::shared_ptr< if( ( ( subCommand == "pos" ) || ( subCommand == "posr" ) ) && ( params != "" ) ) { - auto& rngMgr = Common::Service< RNGMgr >::ref(); - auto state = rngMgr.getRandGenerator( 0, 10 ); - auto arr = state.nextCount< 10 >(); - - for( auto val : arr ) - { - Logger::info( std::to_string( val ) ); - } - int32_t posX; int32_t posY; int32_t posZ;