| 144 | } |
| 145 | |
| 146 | String ClientCommandProcessor::gravity() { |
| 147 | if (!adminCommandAllowed()) |
| 148 | return "You must be an admin to use this command."; |
| 149 | |
| 150 | return toString(m_universeClient->worldClient()->gravity(m_universeClient->mainPlayer()->position())); |
| 151 | } |
| 152 | |
| 153 | String ClientCommandProcessor::debug(String const& argumentsString) { |
| 154 | auto arguments = m_parser.tokenizeToStringList(argumentsString); |
nothing calls this directly
no test coverage detected