Skip to content

Commit

Permalink
App/Emulators: Add battlenet_accounts table for skyfire and Trinity Cata
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightprince committed May 2, 2024
1 parent 030ad66 commit 718ea08
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions application/emulators/skyfire.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,20 @@ class Skyfire implements Emulator
/**
* Array of table names
*/
protected $tables = array(
protected $tables = [
"account" => "account",
"account_access" => "account_access",
"account_banned" => "account_banned",
'ip_banned' => 'ip_banned',
'battlenet_accounts' => 'battlenet_accounts',
"characters" => "characters",
"item_template" => "item_template",
"item_instance_transmog" => "item_instance_transmog",
"character_stats" => "character_stats",
"guild_member" => "guild_member",
"guild" => "guild",
"gm_tickets" => "gm_tickets"
);
];

/**
* Array of column names
Expand Down
1 change: 1 addition & 0 deletions application/emulators/trinity_cata.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class Trinity_cata implements Emulator
"account_access" => "account_access",
"account_banned" => "account_banned",
'ip_banned' => 'ip_banned',
'battlenet_accounts' => 'battlenet_accounts',
"characters" => "characters",
"item_template" => "item_template",
"character_stats" => "character_stats",
Expand Down
4 changes: 2 additions & 2 deletions application/emulators/trinity_cataclassic.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Trinity_cataclassic implements Emulator
/**
* Array of table names
*/
protected $tables = array(
protected $tables = [
'account' => 'account',
'account_access' => 'account_access',
'account_banned' => 'account_banned',
Expand All @@ -47,7 +47,7 @@ class Trinity_cataclassic implements Emulator
'guild_member' => 'guild_member',
'guild' => 'guild',
'gm_tickets' => 'gm_bug'
);
];

/**
* Array of column names
Expand Down
1 change: 1 addition & 0 deletions application/emulators/trinity_old.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class Trinity_old implements Emulator
"account_access" => "account_access",
"account_banned" => "account_banned",
'ip_banned' => 'ip_banned',
'battlenet_accounts' => 'battlenet_accounts',
"characters" => "characters",
"item_template" => "item_template",
"character_stats" => "character_stats",
Expand Down

0 comments on commit 718ea08

Please sign in to comment.