Text() away (#19850)

Refactored all the builtin text procs to use string interpolation
instead.
Added a linting for the above.

This is based on, and should only be merged after, #19847
This commit is contained in:
Fluffy
2024-09-21 14:46:31 +02:00
committed by GitHub
parent 1aeeb6827d
commit 8f9de7c3e2
76 changed files with 351 additions and 264 deletions
@@ -8,5 +8,5 @@
var/dat = "<B>Bombing List</B>"
for(var/l in GLOB.bombers)
dat += text("[l]<BR>")
dat += "[l]<BR>"
user << browse(dat, "window=bombers")