Prechádzať zdrojové kódy

Compile fixes, cleanup

Tomasz Zieliński 2 rokov pred
rodič
commit
fabad20aa1

+ 0 - 1
lib/rmg/CMapGenOptions.cpp

@@ -10,7 +10,6 @@
  */
 
 #include "StdInc.h"
-#include "CMapGenOptions.h"
 
 #include "../mapping/CMapHeader.h"
 #include "CRmgTemplateStorage.h"

+ 0 - 7
lib/rmg/CMapGenerator.cpp

@@ -80,13 +80,6 @@ void CMapGenerator::loadConfig()
 	config.pandoraMultiplierSpells = randomMapJson["pandoras"]["valueMultiplierSpells"].Integer();
 	config.pandoraSpellSchool = randomMapJson["pandoras"]["valueSpellSchool"].Integer();
 	config.pandoraSpell60 = randomMapJson["pandoras"]["valueSpell60"].Integer();
-	/*
-	//override config with game options
-	if(!mapGenOptions.isRoadEnabled(config.secondaryRoadType))
-		config.secondaryRoadType = "";
-	if(!mapGenOptions.isRoadEnabled(config.defaultRoadType))
-		config.defaultRoadType = config.secondaryRoadType;
-	*/
 	config.singleThread = randomMapJson["singleThread"].Bool();
 }
 

+ 0 - 1
lib/rmg/modificators/ConnectionsPlacer.h

@@ -35,7 +35,6 @@ protected:
 	void collectNeighbourZones();
 
 protected:
-
 	std::vector<rmg::ZoneConnection> dConnections, dCompleted;
 	std::map<TRmgTemplateZoneId, rmg::Tileset> dNeighbourZones;
 };

+ 1 - 1
lib/rmg/modificators/MinePlacer.cpp

@@ -65,7 +65,7 @@ bool MinePlacer::placeMines(ObjectManager & manager)
 
 			if (!i && (res == EGameResID::WOOD || res == EGameResID::ORE))
 			{
-				//only first wood&ore mines are close
+				//only first wood & ore mines are close
 				manager.addCloseObject(RequiredObjectInfo(mine, rmginfo.value));
 			}
 			else