Skip to content

Commit

Permalink
3.18.5: fix mp2 item weights
Browse files Browse the repository at this point in the history
  • Loading branch information
RainbowTabitha committed Aug 14, 2024
1 parent 74b3d41 commit b4f29e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frames/marioParty2_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def create_entry(tab, row, icon_path, label_text, color, placeholder):
magicLamp2 = ctk.CTkEntry(master=tabview.tab("Item Mods"), width=48, font=("Arial", 16, "bold"), placeholder_text="30")
magicLamp2.grid(row=3, column=8)

parseButtonTwo = ctk.CTkButton(master=tabview.tab("Item Mods"), command=lambda: itemsTwo(mushroom2, skeletonKey2, plunderChest2, duelingGlove2, warpBlock2, goldenMushroom2, magicLamp2), text="Generate Codes")
parseButtonTwo = ctk.CTkButton(master=tabview.tab("Item Mods"), command=lambda: itemsEvent_mp2(mushroom2, skeletonKey2, plunderChest2, duelingGlove2, warpBlock2, goldenMushroom2, magicLamp2), text="Generate Codes")
parseButtonTwo.place(x=10, y=800)

warningLabel = ctk.CTkLabel(master=tabview.tab("Item Mods"), text="These are not weights! 0 doesnt mean disabled.", font=("Arial", 16, "bold"))
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# License: MIT
# ============================================

versionString = "3.18.4"
versionString = "3.18.5"

0 comments on commit b4f29e5

Please sign in to comment.