From b9305dfd45cc0e0b13e9b755cd4e47aaf788b8b0 Mon Sep 17 00:00:00 2001 From: Fiftytwo Date: Sat, 8 Aug 2020 14:34:21 +0200 Subject: [PATCH] Fix Mushroom SatCom links --- src/script/cbottoken.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/script/cbottoken.cpp b/src/script/cbottoken.cpp index 4cdae229..fa58a1a6 100644 --- a/src/script/cbottoken.cpp +++ b/src/script/cbottoken.cpp @@ -243,8 +243,8 @@ std::string GetHelpFilename(ObjectType type) if ( type == OBJECT_PLANT0 ) helpfile = "object/bush"; if ( type == OBJECT_ROOT5 ) helpfile = "object/gravi"; if ( type == OBJECT_QUARTZ0 ) helpfile = "object/crystal"; - if ( type == OBJECT_MUSHROOM1 ) helpfile = "object/gremush"; - if ( type == OBJECT_MUSHROOM2 ) helpfile = "object/bromush"; + if ( type == OBJECT_MUSHROOM1 ) helpfile = "object/bromush"; + if ( type == OBJECT_MUSHROOM2 ) helpfile = "object/gremush"; if (helpfile.empty()) return "";