Skip to content

Commit

Permalink
Update outside.js
Browse files Browse the repository at this point in the history
Changed sickness event to kill up to half of the villagers instead of up to 20.
  • Loading branch information
JMRedford committed Jun 14, 2015
1 parent 612d247 commit ee591ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/events/outside.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Events.Outside = [
_('the nights are rent with screams.')
],
onLoad: function() {
var numKilled = Math.floor(Math.random() * 20) + 1;
var numKilled = Math.floor(Math.random() * Math.floor($SM.get('game.population', true)/2)) + 1;
Outside.killVillagers(numKilled);
},
buttons: {
Expand Down

0 comments on commit ee591ca

Please sign in to comment.