Added Marathon speed per user request
This commit is contained in:
parent
daa3c8fcec
commit
f1fb8aea18
1 changed files with 3 additions and 1 deletions
|
@ -3,13 +3,15 @@ package com.unciv.models.metadata
|
|||
enum class GameSpeed{
|
||||
Quick,
|
||||
Standard,
|
||||
Epic;
|
||||
Epic,
|
||||
Marathon;
|
||||
|
||||
fun getModifier(): Float {
|
||||
when(this) {
|
||||
Quick -> return 0.67f
|
||||
Standard -> return 1f
|
||||
Epic -> return 1.5f
|
||||
Marathon -> return 1.5f
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue