mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-08-27 07:56:12 +01:00
repace lentext with length procs
This commit is contained in:
@@ -100,12 +100,12 @@ Doing this because FindTurfs() isn't even used
|
||||
if(Debug)
|
||||
var/image/I = image('icons/misc/mark.dmi', "blank")
|
||||
|
||||
if(lentext(tn)>8)
|
||||
if(length(tn)>8)
|
||||
tn = "*"
|
||||
|
||||
var/len = lentext(tn)
|
||||
var/len = length(tn)
|
||||
|
||||
for(var/d = 1 to lentext(tn))
|
||||
for(var/d = 1 to length(tn))
|
||||
|
||||
|
||||
var/char = copytext(tn, len-d+1, len-d+2)
|
||||
|
||||
Reference in New Issue
Block a user