|
@@ -119,13 +119,27 @@ void Score::giveLoot( std::string planet )
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
if ( planet == "Titan" )
|
|
|
{
|
|
|
m_hasShield = true;
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ if ( planet == "DistantSite2018_FR" )
|
|
|
+ {
|
|
|
+ m_hasWeapon[ SNIPER_ID ] = true;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if ( planet == "Chateaubriande" )
|
|
|
+ {
|
|
|
+ m_hasWeapon[ MISSILE_ID ] = true;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
if ( planet == "BlueMoon" && m_cpuLoad < 100 )
|
|
|
{
|