Apparently I missed renaming this when I introduced the "rempprop"
name.
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
// ---------- die cooldown ----------
#[wasm_bindgen]
-pub fn die_cooldown_path(radius: f64, remaining: f64) -> JsString {
+pub fn die_cooldown_path(radius: f64, remprop: f64) -> JsString {
let mut s = String::new();
- base_misc::die_cooldown_path(&mut s, radius, remaining)
+ base_misc::die_cooldown_path(&mut s, radius, remprop)
.expect("format to string failed!");
s.into()
}