use crate::app::App;
use crate::res;
use crate::response::EitherExt;
use axum::extract::{Json, State};
use axum::response::Response;
use nil_payload::request::cheat::city::*;
pub async fn set_stability(
State(app): State<App>,
Json(req): Json<CheatSetStabilityRequest>,
) -> Response {
app
.world_mut(req.world, |world| {
world.cheat_set_stability(req.coord, req.stability)
})
.await
.try_map_left(|()| res!(OK))
.into_inner()
}