diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm
index 0ba19e795e..d7a51663a5 100644
--- a/code/__HELPERS/roundend.dm
+++ b/code/__HELPERS/roundend.dm
@@ -103,10 +103,10 @@
if(LAZYLEN(GLOB.round_end_notifiees))
send2irc("Notice", "[GLOB.round_end_notifiees.Join(", ")] the round has ended.")
- for(var/client/C in GLOB.clients)
+ /*for(var/client/C in GLOB.clients)
if(!C.credits)
C.RollCredits()
- C.playtitlemusic(40)
+ C.playtitlemusic(40)*/
display_report()
@@ -434,10 +434,7 @@
/proc/printplayer(datum/mind/ply, fleecheck)
- var/jobtext = ""
- if(ply.assigned_role)
- jobtext = " the [ply.assigned_role]"
- var/text = "[ply.key] was [ply.name][jobtext] and"
+ var/text = "[ply.key] was [ply.name] the [ply.assigned_role] and"
if(ply.current)
if(ply.current.stat == DEAD)
text += " died"
@@ -445,7 +442,7 @@
text += " survived"
if(fleecheck)
var/turf/T = get_turf(ply.current)
- if(!T || !is_station_level(T.z))
+ if(!T || !(T.z in GLOB.station_z_levels))
text += " while fleeing the station"
if(ply.current.real_name != ply.name)
text += " as [ply.current.real_name]"