| 2853 | } |
| 2854 | |
| 2855 | void Zone::SendReloadMessage(std::string reload_type) |
| 2856 | { |
| 2857 | worldserver.SendEmoteMessage( |
| 2858 | 0, |
| 2859 | 0, |
| 2860 | AccountStatus::GMAdmin, |
| 2861 | Chat::Yellow, |
| 2862 | fmt::format( |
| 2863 | "{} reloaded for {}.", |
| 2864 | reload_type, |
| 2865 | GetZoneDescription() |
| 2866 | ).c_str() |
| 2867 | ); |
| 2868 | } |
| 2869 | |
| 2870 | void Zone::SendDiscordMessage(int webhook_id, const std::string& message) |
| 2871 | { |
no test coverage detected