Method code for $climate.del_weather_cmd()

[Turn on line numbering]
arg cmdstr, cmd, this, p1, weather;
var i;

(> .perms(sender()) <);
if (!weathers.contains(weather))
    return "That weather doesn't belong to this climate.";
weathers = weathers.del(weather);
return "Weather `" + weather.name() + "' removed.";

["// Miroslav Silovic ", "// Created 12-Aug-1996 as a part of ColdCore, see: @help Credit"]

the Cold Dark