Skip to content

Commit

Permalink
Чиним русский язык в memories (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kush1Push1 authored Jan 18, 2025
1 parent 7eb6a42 commit 3d0e22f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion code/datums/mind.dm
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,13 @@
/datum/mind/proc/show_memory(mob/recipient, window=1)
if(!recipient)
recipient = current
var/output = "<B>[current.real_name]'s Memories:</B><br>"
// REDMOON ADD START - фикс для русских букв
var/output = ""
if(window)
output += "<html><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8'><title>Мои воспоминания:</title></head>"
else
// REDMOON ADD END
output = "<B>Мои воспоминания:</B><br>"
output += memory


Expand Down

0 comments on commit 3d0e22f

Please sign in to comment.