Differences From
Artifact [5d5ed1c86e]:
32 32 var sn_follows = cs(lib.math.decstr_friendly(stats.follows, sn_posts.ptr - 1))
33 33 var sn_followers = cs(lib.math.decstr_friendly(stats.followers, sn_follows.ptr - 1))
34 34 var sn_mutuals = cs(lib.math.decstr_friendly(stats.mutuals, sn_followers.ptr - 1))
35 35 var bio = lib.str.plit "<em>tall, dark, and mysterious</em>"
36 36 if actor.bio ~= nil then
37 37 bio = lib.smackdown.html(cs(actor.bio))
38 38 end
39 - var fullname = lib.render.nym(actor,0,nil) defer fullname:free()
39 + var fullname = lib.render.nym(actor,0,nil,false) defer fullname:free()
40 40 var comments: lib.str.acc comments:init(64)
41 41 -- this is really more what epithets are for, i think
42 42 --if actor.rights.rank > 0 then comments:lpush('<li>staff member</li>') end
43 + if co.srv.cfg.master == actor.id then
44 + comments:lpush('<li style="--co:-70">founder</li>')
45 + end
43 46 if co.aid ~= 0 and actor.rights.rank ~= 0 then
44 47 if co.who:outranks(actor) then
45 48 comments:lpush('<li style="--co:50">underling</li>')
46 49 elseif actor:outranks(co.who) then
47 50 comments:lpush('<li style="--co:-50">outranks you</li>')
48 51 end
49 52 end