Merge pull request #6433 from Heroman3003/spawnfix

Fixes one of the Cancel buttons on Spawn Character not working
This commit is contained in:
Atermonera
2019-08-31 14:11:44 -08:00
committed by GitHub
+1 -1
View File
@@ -368,7 +368,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
return
var/location = alert(src,"Please specify where to spawn them.", "Location", "Right Here", "Arrivals", "Cancel")
if(!location)
if(location == "Cancel" || !location)
return
var/announce = alert(src,"Announce as if they had just arrived?", "Announce", "Yes", "No", "Cancel")