diff --git a/client/assets/styles/instance.less b/client/assets/styles/instance.less index fdf9f4cd..ac67927a 100644 --- a/client/assets/styles/instance.less +++ b/client/assets/styles/instance.less @@ -379,11 +379,15 @@ .faceoff-text { grid-area: text; - font-size: 200%; text-transform: uppercase; letter-spacing: 1em; font-weight: bold; + display: flex; + flex-flow: column; + justify-content: center; + + color: @black; animation: faceoff 4s ease-in-out 0s 2 alternate; diff --git a/server/src/game.rs b/server/src/game.rs index 1eaa786b..ead95592 100644 --- a/server/src/game.rs +++ b/server/src/game.rs @@ -506,7 +506,6 @@ impl Game { } // only reduce cooldowns if no cd was used - // have to borrow self for the skill check { if let Some(skill) = resolved.iter() .filter(|s| s.source_construct_id == construct.id)