@@ -40,12 +40,12 @@ async def s_profile(interact: discord.Interaction, user: str):
4040 else :
4141 rank = "<:ScratchCat:1330547949721223238> Scratcher"
4242
43- with open ("ScratchOn_private /scusers.txt" ) as f :
43+ with open ("private /scusers.txt" ) as f :
4444 lines = [line .rstrip ("\n " ) for line in f ]
4545 if usr .name in lines :
4646 idx = lines .index (usr .name )
4747 binded = (
48- open ("ScratchOn_private /dcusers.txt" ).readlines ()[idx ].rstrip ("\n " )
48+ open ("private /dcusers.txt" ).readlines ()[idx ].rstrip ("\n " )
4949 )
5050 else :
5151 binded = "*No binded account found*"
@@ -114,7 +114,7 @@ async def bind(interact: discord.Interaction, username: str):
114114 found = False
115115
116116 # Check if user is already binded
117- with open ("ScratchOn_private /dcusers.txt" ) as file :
117+ with open ("private /dcusers.txt" ) as file :
118118 for item in file .readlines ():
119119 if item .strip () == target :
120120 found = True
@@ -150,9 +150,9 @@ async def bind(interact: discord.Interaction, username: str):
150150 v = pending_verifiers [user_id ]
151151 if v .check ():
152152 # Store binding
153- with open ("ScratchOn_private /dcusers.txt" , "a" ) as file :
153+ with open ("private /dcusers.txt" , "a" ) as file :
154154 file .write (f"{ str (interact .user )} \n " )
155- with open ("ScratchOn_private /scusers.txt" , "a" ) as file :
155+ with open ("private /scusers.txt" , "a" ) as file :
156156 file .write (f"{ str (username )} \n " )
157157
158158 # Remove verifier from memory
0 commit comments