diff --git a/config/cars.xml b/config/cars.xml index b843a646..5e33798a 100644 --- a/config/cars.xml +++ b/config/cars.xml @@ -1,60 +1,63 @@ - - - - - - - - - - + + + + + + + + + + + - + - - - + + + - - - + + + - - - - + + + + - - + + - - + + - - - + + + - - + + + - + - - - + + + - + - + + - - + + diff --git a/docs/Changelog.md b/docs/Changelog.md index f746c6d9..3dfbc9dc 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -4,7 +4,11 @@ This section lists changes not yet released, but committed to new repositories s - Game - - 1 New, vehicle type: Hovering car, [video](https://www.youtube.com/watch?v=9pE8JPV2M8w) + - WIP: 5 New vehicles, 3 new types: hover, hovercraft, drone + - R1 Sci-Fi Hovering car, [video](https://www.youtube.com/watch?v=9pE8JPV2M8w) + - H1 racing hovercraft with fan + - 2 antigravity drones: Q1 slower, Q3 incredibly fast and agile + - YG fast car - Tracks - 1 New - Replaced all old 4k skies with new 8k ones on all tracks diff --git a/src/game/Gui_UtilCar.cpp b/src/game/Gui_UtilCar.cpp index 4babebb4..4c99f69a 100644 --- a/src/game/Gui_UtilCar.cpp +++ b/src/game/Gui_UtilCar.cpp @@ -92,7 +92,8 @@ void CGui::AddCarL(string name, const CarInfo* ci) li->addItem(clr+ name); int l = li->getItemCount()-1; li->setSubItemNameAt(1,l, clr+ TR("#{"+ ci->name +"}")); - li->setSubItemNameAt(2,l, gcom->getClrDiff(ci->speed *0.76f)+ fToStr(ci->speed,1,3)); + // li->setSubItemNameAt(2,l, gcom->getClrDiff(ci->speed *0.76f)+ fToStr(ci->speed,1,3)); + li->setSubItemNameAt(2,l, gcom->getClrVal(ci->speed *1.3f)+ fToStr(ci->speed,1,3)); li->setSubItemNameAt(3,l, gcom->getClrRating(ci->rating)+ " "+toStr(ci->rating)); li->setSubItemNameAt(4,l, gcom->getClrDiff(ci->diff )+ " "+toStr(ci->diff));