[10949] Fix the word accessable -> accessible in log message

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2011-01-02 01:28:54 +01:00
parent 20e7cdb55e
commit 0da3463758
6 changed files with 10 additions and 5 deletions

View file

@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
`version` varchar(120) default NULL,
`creature_ai_version` varchar(120) default NULL,
`cache_id` int(10) default '0',
`required_10946_01_mangos_spell_proc_event` bit(1) default NULL
`required_10949_01_mangos_mangos_string` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
--

View file

@ -0,0 +1,3 @@
ALTER TABLE db_version CHANGE COLUMN required_10946_01_mangos_spell_proc_event required_10949_01_mangos_mangos_string bit;
UPDATE mangos_string SET content_default='Scripting library not found or not accessible.' WHERE entry=1166;

View file

@ -1,4 +1,4 @@
# Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/>
# Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -141,6 +141,7 @@ pkgdata_DATA = \
10932_01_mangos_game_event_creature_data.sql \
10945_01_mangos_mangos_string.sql \
10946_01_mangos_spell_proc_event.sql \
10949_01_mangos_mangos_string.sql \
README
## Additional files to include when running 'make dist'
@ -262,4 +263,5 @@ EXTRA_DIST = \
10932_01_mangos_game_event_creature_data.sql \
10945_01_mangos_mangos_string.sql \
10946_01_mangos_spell_proc_event.sql \
10949_01_mangos_mangos_string.sql \
README

View file

@ -1256,7 +1256,7 @@ void World::SetInitialWorldSettings()
sLog.outString("Scripting library loaded.");
break;
case SCRIPT_LOAD_ERR_NOT_FOUND:
sLog.outError("Scripting library not found or not accessable.");
sLog.outError("Scripting library not found or not accessible.");
break;
case SCRIPT_LOAD_ERR_WRONG_API:
sLog.outError("Scripting library has wrong list functions (outdated?).");

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10948"
#define REVISION_NR "10949"
#endif // __REVISION_NR_H__

View file

@ -1,6 +1,6 @@
#ifndef __REVISION_SQL_H__
#define __REVISION_SQL_H__
#define REVISION_DB_CHARACTERS "required_10862_01_characters_mail"
#define REVISION_DB_MANGOS "required_10946_01_mangos_spell_proc_event"
#define REVISION_DB_MANGOS "required_10949_01_mangos_mangos_string"
#define REVISION_DB_REALMD "required_10008_01_realmd_realmd_db_version"
#endif // __REVISION_SQL_H__