
Pages:<< prev 1 next >>


Off the Edge of the Map

GroupAdministrators
Posts1,199
JoinedMar 21, 2006
Bug: Weather command works indoors
Danger: Low - Weather can be checked indoors.
Found by: Hanaisse
Fixed by: Kayle
---
weather.c, do_weather
Find:
Change to:
Danger: Low - Weather can be checked indoors.
Found by: Hanaisse
Fixed by: Kayle
---
weather.c, do_weather
Find:
if( !IS_OUTSIDE( ch ) ) { send_to_char( "You need to be outside to do that!\r\n", ch ); return; }
Change to:
if( !IS_OUTSIDE( ch ) && NO_WEATHER_SECT( ch->in_room->sector_type ) ) { send_to_char( "You need to be outside to do that!\r\n", ch ); return; }
Pages:<< prev 1 next >>