Differences From
Artifact [a033243372]:
66 66 end
67 67
68 68 -- this is really more what epithets are for, i think
69 69 if actor.rights.rank > 0 and stafftxt:ref() then
70 70 comments:lpush('<li>'):ppush(stafftxt):lpush('</li>')
71 71 end
72 72
73 - if co.who:outranks(actor) then
74 - comments:lpush('<li style="--co:50">underling</li>')
75 - elseif actor:outranks(co.who) then
76 - comments:lpush('<li style="--co:-50">outranks you</li>')
73 + if co.who.rights.rank ~= 0 then
74 + if co.who:outranks(actor) then
75 + comments:lpush('<li style="--co:50">underling</li>')
76 + elseif actor:outranks(co.who) then
77 + comments:lpush('<li style="--co:-50">outranks you</li>')
78 + end
77 79 end
78 80
79 81 if relationship.recip.follow() then
80 82 comments:lpush('<li style="--co:30">follows you</li>')
81 83 end
82 84 end
83 85