| 880 | } |
| 881 | |
| 882 | std::string DebugCmdScrollView(const string_view parameter) |
| 883 | { |
| 884 | DebugScrollViewEnabled = !DebugScrollViewEnabled; |
| 885 | if (DebugScrollViewEnabled) |
| 886 | return "You can see as far as an eagle."; |
| 887 | InitMultiView(); |
| 888 | return "If you want to see the world, you need to explore it yourself."; |
| 889 | } |
| 890 | |
| 891 | std::string DebugCmdItemInfo(const string_view parameter) |
| 892 | { |
nothing calls this directly
no test coverage detected