diff --git a/src/components/Match/MatchLog.tsx b/src/components/Match/MatchLog.tsx index 843c764905d..f8949b9319b 100644 --- a/src/components/Match/MatchLog.tsx +++ b/src/components/Match/MatchLog.tsx @@ -12,6 +12,7 @@ import { import FormField from "../Form/FormField"; import { StyledLogFilterForm } from "./StyledMatch"; import HeroImage from "../Visualizations/HeroImage"; +import config from "../../config"; import sword from "../Icons/Sword.svg"; import { IconBloodDrop, IconRoshan } from "../Icons"; import lightning from "../Icons/Lightning.svg"; @@ -502,6 +503,15 @@ function EntryMessage({ entry, strings }: { entry: any; strings: Strings }) { {strings.killed} {hero.localized_name} + {entry.smoke && ( + + {strings.smoke_kill} + + )} ); } diff --git a/src/lang/en-US.json b/src/lang/en-US.json index 6b9231318d9..41cd991419c 100644 --- a/src/lang/en-US.json +++ b/src/lang/en-US.json @@ -1208,6 +1208,7 @@ "killed": "killed", "team_courier": "{team}'s courier", "slain_roshan": "Have slain Roshan", + "smoke_kill": "Kill from Smoke of Deceit", "destroyed_tormentor": "Have destroyed the Tormentor", "drew_first_blood": "Drew First Blood", "player_profile_private_title": "This profile is private",