1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-06 05:43:56 +00:00

Rug mentions it works in Torus now

This commit is contained in:
Zeno Rogue 2017-11-07 14:20:19 +01:00
parent fcec90d8fb
commit b5382c5670
4 changed files with 5 additions and 5 deletions

View File

@ -6433,7 +6433,7 @@ S("Not implemented for spherical geometry. Please tell me if you really want thi
"Není implementováno ve sférické geometrii. Pokud byste to opravdu chtěli, dejte mi vědět.") "Není implementováno ve sférické geometrii. Pokud byste to opravdu chtěli, dejte mi vědět.")
// Hypersian Rug // Hypersian Rug
S("This makes sense only in hyperbolic geometry.", "To dává smysl jenom v hyperbolické geometrii.") S("This makes sense only in hyperbolic or Torus geometry.", "To dává smysl jenom v hyperbolické geometrii/torus.")
#undef Orb #undef Orb

View File

@ -6283,7 +6283,7 @@ S("Not implemented for spherical geometry. Please tell me if you really want thi
"Nie zaimplementowane dla geometrii sferycznej. Jeśli bardzo tego chcesz, powiedz.") "Nie zaimplementowane dla geometrii sferycznej. Jeśli bardzo tego chcesz, powiedz.")
// Hypersian Rug // Hypersian Rug
S("This makes sense only in hyperbolic geometry.", "To ma sens tylko w geometrii hiperbolicznej.") S("This makes sense only in hyperbolic or Torus geometry.", "To ma sens tylko w geometrii hiperbolicznej i na torusie.")
#undef Orb #undef Orb

View File

@ -6504,7 +6504,7 @@ S("Not implemented for spherical geometry. Please tell me if you really want thi
"Не реализовано для сферической геометрии. Напиши мне, если очень хочешь.") "Не реализовано для сферической геометрии. Напиши мне, если очень хочешь.")
// Hypersian Rug // Hypersian Rug
S("This makes sense only in hyperbolic geometry.", "Имеет смысл только в гиперболической геометрии.") S("This makes sense only in hyperbolic or Torus geometry.", "Имеет смысл только в гиперболической/тор геометрии.")
#undef Orb #undef Orb

View File

@ -812,7 +812,7 @@ void show() {
dialog::init(XLAT("hypersian rug mode"), iinf[itPalace].color, 150, 100); dialog::init(XLAT("hypersian rug mode"), iinf[itPalace].color, 150, 100);
if((euclid || sphere) && !torus) { if((euclid || sphere) && !torus) {
dialog::addInfo("This makes sense only in hyperbolic geometry."); dialog::addInfo("This makes sense only in hyperbolic or Torus geometry.");
dialog::addBreak(50); dialog::addBreak(50);
} }
@ -842,7 +842,7 @@ void show() {
); );
else if(uni == 'u') { else if(uni == 'u') {
if((euclid || sphere) && !torus) if((euclid || sphere) && !torus)
addMessage("This makes sense only in hyperbolic geometry."); addMessage("This makes sense only in hyperbolic or Torus geometry.");
else { else {
rug::init(); rug::init();
popScreen(); popScreen();