summaryrefslogtreecommitdiff
path: root/lib/rbot/registry/dbm.rb
diff options
context:
space:
mode:
authorMatthias H <apoc@sixserv.org>2014-02-19 17:45:17 +0100
committerMatthias H <apoc@sixserv.org>2014-02-19 17:45:17 +0100
commit8b980642ce55d04aea4ed282154b4cd9fb1574b4 (patch)
tree6a2d06c002ad56d91babc5840ded22632e5edc76 /lib/rbot/registry/dbm.rb
parent7178fe47dfa606092e564dcdae48ea9586ac4a98 (diff)
[registry] registry folder with suffix, added daybreak engine
Diffstat (limited to 'lib/rbot/registry/dbm.rb')
-rw-r--r--lib/rbot/registry/dbm.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/registry/dbm.rb b/lib/rbot/registry/dbm.rb
index 7c309c7f..a0676539 100644
--- a/lib/rbot/registry/dbm.rb
+++ b/lib/rbot/registry/dbm.rb
@@ -68,7 +68,7 @@ class Registry
def initialize(bot, name)
@bot = bot
@name = name.downcase
- @filename = @bot.path 'registry', @name
+ @filename = @bot.path 'registry_dbm', @name
dirs = File.dirname(@filename).split("/")
dirs.length.times { |i|
dir = dirs[0,i+1].join("/")+"/"