mirror of
https://codeberg.org/demostf/frontend.git
synced 2026-06-04 02:34:13 +02:00
show destructions in kill feed
This commit is contained in:
parent
29d569b93b
commit
6d351a1aae
3 changed files with 51 additions and 19 deletions
|
|
@ -225,7 +225,6 @@ export const Analyser = (props: AnalyseProps) => {
|
|||
const players = () => parser.getPlayersAtTick(tick());
|
||||
const buildings = () => parser.getBuildingsAtTick(tick());
|
||||
const projectiles = () => parser.getProjectilesAtTick(tick());
|
||||
const kills = parser.getKills();
|
||||
const events = parser.getEvents();
|
||||
const playButtonText = () => (playing()) ? '⏸' : '▶️';
|
||||
const inShared = session && !session.isOwner();
|
||||
|
|
@ -262,7 +261,7 @@ export const Analyser = (props: AnalyseProps) => {
|
|||
inShared={inShared}
|
||||
/>
|
||||
<SpecHUD parser={parser} tick={tick()}
|
||||
players={players()} kills={kills}/>
|
||||
players={players()} events={events}/>
|
||||
</div>
|
||||
<div class="time-control"
|
||||
title={timeTitle()}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue