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