From 0e836f1e98deda8bad8a520d1d94c461752389d5 Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Thu, 9 Aug 2018 20:06:45 +0000
Subject: [PATCH] Display the relative humidity as well.

---
 exec/ircbots/weather/weather_commands.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/exec/ircbots/weather/weather_commands.js b/exec/ircbots/weather/weather_commands.js
index a948684d50..6cafcf5ae6 100644
--- a/exec/ircbots/weather/weather_commands.js
+++ b/exec/ircbots/weather/weather_commands.js
@@ -54,6 +54,7 @@ Bot_Commands["WEATHER"].command = function (target,onick,ouh,srv,lvl,cmd) {
 				str += " - " + Weather.weather;
 				str += ", "+ Weather.temp_c+" degrees ("+(parseInt(Weather.temp_c)+273)+"K, "+Weather.temp_f+"F)";
 				str += " Wind "+Weather.wind_string;
+				str += " Relative Humidity: "+Weather.relative_humidity;
 				if(Weather.display_location.city != Weather.observation_location.city)
 					str += " (Observed at: " + Weather.observation_location.city + ")";
 				str += ' (Provided by Weather Underground, Inc.)';
-- 
GitLab