Skip to content

Commit

Permalink
Merge pull request #1481 from mugmuggy/faxes_room_long_names
Browse files Browse the repository at this point in the history
[RDY] Faxes should refer to room.long_name
  • Loading branch information
TheCycoONE committed Oct 8, 2018
2 parents f16a510 + 379887c commit d8d7439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CorsixTH/Lua/world.lua
Expand Up @@ -2255,7 +2255,7 @@ function World:getRoomNameAndRequiredStaffName(room_id)
local room_name, required_staff, staff_name local room_name, required_staff, staff_name
for _, room in ipairs(TheApp.rooms) do for _, room in ipairs(TheApp.rooms) do
if room.id == room_id then if room.id == room_id then
room_name = room.name room_name = room.long_name
required_staff = room.required_staff required_staff = room.required_staff
end end
end end
Expand Down

0 comments on commit d8d7439

Please sign in to comment.