diff --git a/Script/The Universal Mission/PlayerScore.lua b/Script/The Universal Mission/PlayerScore.lua index 81b7678..173f288 100644 --- a/Script/The Universal Mission/PlayerScore.lua +++ b/Script/The Universal Mission/PlayerScore.lua @@ -55,7 +55,12 @@ do if not objectDesc or not objectDesc.attributes then return 10 end -- No description, assume a default value of 10 points local groundMultiplier = 1 - if not killedObject:inAir() then groundMultiplier = 0.5 end -- Aircraft killed on the ground are worth less points + if not killedObject:inAir() then + -- Aircraft killed on the ground are worth less points, except AWACS, bombers and transports + if not objectDesc.attributes["AWACS"] and not objectDesc.attributes["Transports"] and not objectDesc.attributes["Strategic bombers"] then + groundMultiplier = 0.5 + end + end -- Misc if objectDesc.attributes["Missiles"] then return 10 end