|
@@ -16,6 +16,7 @@ import {
|
|
|
HARD,
|
|
|
NIGHTMARE,
|
|
|
RAMP,
|
|
|
+ RAMP_HARD,
|
|
|
} from "../../../domain/constants";
|
|
|
|
|
|
export const GameInfo = () => {
|
|
@@ -60,7 +61,7 @@ export const GameInfo = () => {
|
|
|
you will get 0 points for the wrong country!
|
|
|
</span>
|
|
|
)}
|
|
|
- {scoreMethod === HARD && (
|
|
|
+ {(scoreMethod === HARD || scoreMethod === RAMP_HARD) && (
|
|
|
<span className={styles.label}>
|
|
|
This is hard mode - scoring is very punishing!
|
|
|
</span>
|
|
@@ -70,7 +71,7 @@ export const GameInfo = () => {
|
|
|
You're playing on nightmare mode what is wrong with you
|
|
|
</span>
|
|
|
)}
|
|
|
- {scoreMethod === RAMP && (
|
|
|
+ {(scoreMethod === RAMP || scoreMethod === RAMP_HARD) && (
|
|
|
<span className={styles.label}>
|
|
|
Each round will have a score multiplier, 0.5 higher than the previous
|
|
|
(1x, 1.5x, 2x, ...)
|