Merge pull request #9935 from GinjaNinja32/irc_notification

Fixes certain modes not sending the 'A round of [x] has ended' notification at round-end
This commit is contained in:
Chinsky
2015-06-27 01:09:37 +03:00
6 changed files with 9 additions and 4 deletions

View File

@@ -280,6 +280,7 @@
/datum/game_mode/cult/declare_completion()
if(config.objectives_disabled)
..()
return 1
if(!check_cult_victory())
feedback_set_details("round_end_result","win - cult win")

View File

@@ -243,6 +243,7 @@ var/global/list/turf/synd_spawn = list()
/datum/game_mode/nuclear/declare_completion()
if(config.objectives_disabled)
..()
return
var/disk_rescued = 1
for(var/obj/item/weapon/disk/nuclear/D in world)

View File

@@ -191,6 +191,7 @@
feedback_add_details("head_objective","[objective.type]|FAIL")
count++
break // just print once
..()
return 1

View File

@@ -270,6 +270,8 @@
text += "[head_mind.key] (character destroyed)"
world << text
..()
return 1