You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 7, 2026. It is now read-only.
ifuserdat[str(ctx.author.id)]["work_job"] ==None: returnawaitctx.respond("You don't currently have a job! Join one by using the `/work_select` command.", ephemeral=True)
elifjob=="Scientist"andlevelling.get_level(ctx.author.id) <20: returnawaitctx.respond("You currently do not have the required level to perform this job!", ephemeral=True)
448
436
elifjob=="Engineer"andlevelling.get_level(ctx.author.id) <25: returnawaitctx.respond("You currently do not have the required level to perform this job!", ephemeral=True)
449
437
elifjob=="Doctor"andlevelling.get_level(ctx.author.id) <40: returnawaitctx.respond("You currently do not have the required level to perform this job!", ephemeral=True)
450
-
userdat[str(ctx.author.id)]["work_job"] =job
451
-
save()
438
+
userdata.set(ctx.author.id, "work_job", job)
452
439
localembed=discord.Embed(title="New job!", description=f"You are now working as a {job}!")
0 commit comments