Added Legion megafauna, updated weather and some minor other refactors/changes.

This commit is contained in:
Markolie
2016-10-24 02:16:45 +02:00
parent 37eaf13004
commit 52355cba9d
21 changed files with 759 additions and 242 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ var/global/datum/controller/process/weather/weather_master
var/list/possible_weather_for_this_z = list()
for(var/V in existing_weather)
var/datum/weather/WE = V
if(WE.target_level == Z && WE.probability) //Another check so that it doesn't run extra weather
if(WE.target_z == Z && WE.probability) //Another check so that it doesn't run extra weather
possible_weather_for_this_z[WE] = WE.probability
var/datum/weather/W = pickweight(possible_weather_for_this_z)
run_weather(W.name)