ID:1858793
 
Code:
    /mob/proc/print_flavor_text()
if (flavor_text && flavor_text != "")
var/msg = replacetext(flavor_text, "\n", " ")
if(lentext(msg) <= 40)
return "\blue [msg]"
else
return "\blue [copytext(msg, 1, 37)]... <a href='byond://?src=\ref[src];flavor_more=1'>More...</a>"


Problem description: Refuses to open the 'More' section in a new box unless directly near the src as opposed to being limitless.

This is SS13 related. I'm also having an issue where observes can't view it at all.

I've found the issue. It's related to topic calls and if a user has the rights to do it. I'm just not sure how to resolve the conflict.
We would probably have to see where this proc is called and what Topic() is doing with the command. I'm not familiar with the SS13 source or the hrefs it's using.