Skip to content

Commit

Permalink
Fix disabling/enabling mods not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryhon0 committed Jan 26, 2025
1 parent 5a96174 commit 9ed2378
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Injector/ModList.gd
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func buttonPressed(item: TreeItem, column: int, button: int, mousebtn: int) -> v
return

func itemEdited() -> void:
if List.get_edited_column() == 4:
if List.get_edited_column() == ENABLED_COLUMN:
var item: TreeItem = List.get_edited()
var modi: ModInfo = item.get_meta("mod")
modi.makeDisabled(!modi.disabled)
Expand Down
2 changes: 1 addition & 1 deletion Injector/VM_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.4.1

0 comments on commit 9ed2378

Please sign in to comment.