From 7da2d9d67e40e0069e9a933844f2f377d8a9f855 Mon Sep 17 00:00:00 2001 From: stelar7 Date: Thu, 18 Nov 2021 22:21:58 +0100 Subject: [PATCH] Add autosmite --- .../basic/constants/types/lol/SummonerSpellType.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/java/no/stelar7/api/r4j/basic/constants/types/lol/SummonerSpellType.java b/src/main/java/no/stelar7/api/r4j/basic/constants/types/lol/SummonerSpellType.java index bf6ffc3b..a1e42922 100644 --- a/src/main/java/no/stelar7/api/r4j/basic/constants/types/lol/SummonerSpellType.java +++ b/src/main/java/no/stelar7/api/r4j/basic/constants/types/lol/SummonerSpellType.java @@ -111,8 +111,16 @@ public enum SummonerSpellType implements CodedEnum * Dash through spacetime, becoming briefly untargetable and invulnerable as you rapidly move towards a location. */ WARP(52, "SummonerTemp1"), + /** + * This slot will be replaced by another champion's ultimate selected at the start of the game. There will be 30 seconds to select an ultimate. Be prepared! + */ + ULTBOOK_1(54, "Summoner_Empty"), + /** + * This slot will be replaced by another champion's ultimate selected at the start of the game. There will be 30 seconds to select an ultimate. Be prepared! + */ + AUTO_SMITE(54, "Summoner_EmptySmite"), - ULTBOOK_1(54, "Placeholder"),; + ; private final Integer id;