Skip to content

Commit

Permalink
added remove weather effects
Browse files Browse the repository at this point in the history
  • Loading branch information
robbyz512 committed Apr 18, 2024
1 parent 8bbe7a5 commit 28dfe26
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions mods/Remove Weather Effects/blacklist.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
>>particles/rain_fx
5 changes: 5 additions & 0 deletions mods/Remove Weather Effects/notes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Gets rid of all the weather effects from weather items and from "cl_weather" console command.

https://dota2.fandom.com/wiki/Weather_Effects

Lets you take advantage of the ambient lighting from them without the crap on the screen.
Empty file.
3 changes: 2 additions & 1 deletion mpaths.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,12 @@
'Remove River',
'Remove Sprays',
'Remove Taunt Sounds',
'Remove Weather Effects',
'Show NetWorth',
'Saiyan Mod',
'Tree Mod',
]

mods_folders = []
for mod in os.listdir(mods_dir): mods_folders.append(mod)
mods_folders = [p for p in mods_folders if p in enabled_mods]
mods_folders = [p for p in mods_folders if p in enabled_mods]

0 comments on commit 28dfe26

Please sign in to comment.