Skip to content

Commit

Permalink
remove psycho effects, they got old
Browse files Browse the repository at this point in the history
  • Loading branch information
Th3-M4jor committed May 25, 2024
1 parent 588de4b commit fe3e95a
Show file tree
Hide file tree
Showing 20 changed files with 58 additions and 1,089 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ nohup.out

#database files
db/*
!db/.keep
dev_db.db
prod_db.db
priv/repo/structure.sql
Expand Down
15 changes: 3 additions & 12 deletions config/example_config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ config :nostrum,
:guilds
]

config :mnesia,
dir: ~c'./mnesia/dev'

config :logger,
level: :info,
backends: [
Expand Down Expand Up @@ -143,16 +146,4 @@ config :adjutant,
},
style: 1
}
],
# these can be strings for unicode emojis, or tupules with {name, id} or {name, id, animated}
# where name is the name of the emoji, id is the id of the emoji, and animated is a boolean
# for using custom emojis
troll_emojis: [
"👿",
"🍆",
"🤡",
"🔥",
"💀",
"🇹🇩",
"🗿"
]
12 changes: 0 additions & 12 deletions config/test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,4 @@ config :adjutant,
},
style: 1
}
],
# these can be strings for unicode emojis, or tupules with {name, id} or {name, id, animated}
# where name is the name of the emoji, id is the id of the emoji, and animated is a boolean
# for using custom emojis
troll_emojis: [
"👿",
"🍆",
"🤡",
"🔥",
"💀",
"🇹🇩",
"🗿"
]
Empty file added db/.keep
Empty file.
4 changes: 2 additions & 2 deletions lib/adjutant/application.ex
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ defmodule Adjutant.Application do

def start(_type, _args) do
children = [
Adjutant.BotSupervisor,
Adjutant.Repo.Supervisor
Adjutant.Repo.Supervisor,
Adjutant.BotSupervisor
]

Supervisor.start_link(children, strategy: :one_for_one)
Expand Down
2 changes: 0 additions & 2 deletions lib/adjutant/command.ex
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ defmodule Adjutant.Command do
Adjutant.Command.Slash.Ping,
Adjutant.Command.Slash.Shuffle,
Adjutant.Command.Slash.Hidden,
Adjutant.Command.Slash.Insults,
Adjutant.Command.Slash.PsychoEffects,
Adjutant.Command.Slash.RemindMe,
Adjutant.Command.Slash.HOTG.Team
]
Expand Down
229 changes: 0 additions & 229 deletions lib/adjutant/command/slash/insults.ex

This file was deleted.

Loading

0 comments on commit fe3e95a

Please sign in to comment.