File tree 2 files changed +10
-0
lines changed 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,10 @@ export default function App(): React.ReactElement {
76
76
< LinkColor >
77
77
< Link to = "/whitelists" > Whitelists</ Link >
78
78
</ LinkColor >
79
+ |
80
+ < LinkColor >
81
+ < Link to = "/new_players" > New Players</ Link >
82
+ </ LinkColor >
79
83
</ div >
80
84
< div className = "w-full md:container md:mx-auto flex flex-col foreground rounded mt-5 p-5" >
81
85
< Outlet />
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export const NewPlayers: React.FC = () => {
46
46
< tr >
47
47
< th > CKEY</ th >
48
48
< th > Time Connected</ th >
49
+ < th > BYOND account age</ th >
49
50
< th > CID</ th >
50
51
< th > IP</ th >
51
52
</ tr >
@@ -61,6 +62,11 @@ export const NewPlayers: React.FC = () => {
61
62
Date . parse ( player . firstJoinDate ! . replace ( " " , "T" ) )
62
63
) . toLocaleString ( ) }
63
64
</ td >
65
+ < td >
66
+ { new Date (
67
+ Date . parse ( player . byondAccountAge ! . replace ( " " , "T" ) )
68
+ ) . toLocaleString ( ) }
69
+ </ td >
64
70
< td >
65
71
< DetailedCid cid = { player . lastKnownCid } />
66
72
</ td >
You can’t perform that action at this time.
0 commit comments