From 9d78b7096d144a0fae164edfc81d566e7b59ba8e Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 30 Sep 2017 11:33:39 +0200 Subject: [PATCH] fixed the names in credits --- help.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/help.cpp b/help.cpp index eb077ce6..2d0987e2 100644 --- a/help.cpp +++ b/help.cpp @@ -95,8 +95,8 @@ string buildCredits() { #endif h += XLAT( "special thanks to the following people for their bug reports, feature requests, porting, and other help:\n\n%1\n\n", - "Konstantin Stupnik, ortoslon, chrysn, Adam Borowski, Damyan Ivanov, Ryan Farnsley, mcobit, Darren Grey, tricosahedron, Maciej Chojecki, Marek ÄŚtrnáct, " - "wonderfullizardofoz, Piotr MigdaĹ‚, tehora, Michael Heerdegen, Sprite Guard, zelda0x181e, Vipul, snowyowl0, Patashu, phenomist, Alan Malloy, Tom Fryers, Sinquetica, _monad, CtrlAltDestroy, jruderman, " + "Konstantin Stupnik, ortoslon, chrysn, Adam Borowski, Damyan Ivanov, Ryan Farnsley, mcobit, Darren Grey, tricosahedron, Maciej Chojecki, Marek Čtrnáct, " + "wonderfullizardofoz, Piotr Migdał, tehora, Michael Heerdegen, Sprite Guard, zelda0x181e, Vipul, snowyowl0, Patashu, phenomist, Alan Malloy, Tom Fryers, Sinquetica, _monad, CtrlAltDestroy, jruderman, " "Kojiguchi Kazuki, baconcow, Alan" ); #ifdef EXTRALICENSE @@ -607,7 +607,7 @@ void describeMouseover() { out = XLAT1(linf[c->land].name); help = generateHelpForLand(c->land); - if(c->land == laIce || c->land == laCocytus) + if(isIcyLand(c)) out += " (" + fts(heat::celsius(c)) + " °C)"; if(c->land == laDryForest && c->landparam) out += " (" + its(c->landparam)+"/10)"; @@ -648,7 +648,7 @@ void describeMouseover() { } if(c->wall && - !((c->wall == waFloorA || c->wall == waFloorB || c->wall == waFloorC || c->wall == waFloorD) && c->item)) { + !((c->wall == waFloorA || c->wall == waFloorB) && c->item)) { out += ", "; out += XLAT1(winf[c->wall].name); if(c->wall == waRose) out += " (" + its(7-rosephase) + ")";