Skip to content

Commit

Permalink
TDB 335.11.43
Browse files Browse the repository at this point in the history
Move SQL updates to the directory old.
  • Loading branch information
DDuarte committed Oct 28, 2011
1 parent c19a6c7 commit accae0c
Show file tree
Hide file tree
Showing 165 changed files with 18 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
DELETE FROM command WHERE name = 'dev';
INSERT INTO command VALUES
('dev', 3, 'Syntax: .dev [on/off]\r\n\r\nEnable or Disable in game Dev tag or show current state if on/off not provided.');
DELETE FROM command WHERE name = 'dev';
INSERT INTO command VALUES
('dev', 3, 'Syntax: .dev [on/off]\r\n\r\nEnable or Disable in game Dev tag or show current state if on/off not provided.');
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DELETE FROM trinity_string WHERE entry IN (1137, 1138);
INSERT INTO trinity_string (`entry`,`content_default`) VALUES
(1137, 'Dev mode is ON'),
(1138, 'Dev mode is OFF');
DELETE FROM trinity_string WHERE entry IN (1137, 1138);
INSERT INTO trinity_string (`entry`,`content_default`) VALUES
(1137, 'Dev mode is ON'),
(1138, 'Dev mode is OFF');
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions sql/updates/world/2011_10_29_00_world_version.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
UPDATE `version` SET `db_version`='TDB 335.11.43' LIMIT 1;
10 changes: 10 additions & 0 deletions src/server/worldserver/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
/// @{
/// \file

#include <iostream>

#include <openssl/opensslv.h>
#include <openssl/crypto.h>
#include <ace/Version.h>
Expand Down Expand Up @@ -133,6 +135,14 @@ extern int main(int argc, char **argv)
{
sLog->outError("Invalid or missing configuration file : %s", cfg_file);
sLog->outError("Verify that the file exists and has \'[worldserver]' written in the top of the file!");

char *path=NULL;
size_t size = 0;
int a;
path=getcwd(path,size);
std::cout<<"\n current Path"<<path;
std::cin >> a;

return 1;
}
sLog->outString("Using configuration file %s.", cfg_file);
Expand Down

0 comments on commit accae0c

Please sign in to comment.