mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-16 21:44:05 +09:00
collision detection and CCD: Not exactly fixed but it works good enough
Former-commit-id: 3feb9b1156fc941390b4efe4c1540ed4c5dbd109 Former-commit-id: 8c97b0ade765731800ef09b722e0742e44443338
This commit is contained in:
@@ -252,12 +252,9 @@ constructor(gamename: String) : StateBasedGame(gamename) {
|
||||
get() {
|
||||
val lan = System.getProperty("user.language")
|
||||
var country = System.getProperty("user.country")
|
||||
if (lan == "en")
|
||||
country = "US"
|
||||
else if (lan == "fr")
|
||||
country = "FR"
|
||||
else if (lan == "de")
|
||||
country = "DE"
|
||||
if (lan == "en") country = "US"
|
||||
else if (lan == "fr") country = "FR"
|
||||
else if (lan == "de") country = "DE"
|
||||
else if (lan == "ko") country = "KR"
|
||||
|
||||
return lan + country
|
||||
|
||||
Reference in New Issue
Block a user