| 133 | } |
| 134 | |
| 135 | String CommandProcessor::whoami(ConnectionId connectionId, String const&) { |
| 136 | return strf("Server: You are {}. You are {}an Admin", |
| 137 | m_universe->clientNick(connectionId), |
| 138 | m_universe->isAdmin(connectionId) ? "" : "not "); |
| 139 | } |
| 140 | |
| 141 | String CommandProcessor::warp(ConnectionId connectionId, String const& argumentString) { |
| 142 | if (auto errorMsg = adminCheck(connectionId, "do the space warp again")) |
nothing calls this directly
no test coverage detected