diff options
| author | TheWinchesters <40777754+TheWinchesters@users.noreply.github.com> | 2019-02-15 16:18:58 -0300 |
|---|---|---|
| committer | Giacomo Pozzoni <giacomopoz@gmail.com> | 2019-02-15 20:18:58 +0100 |
| commit | a0056951f7e425341760ebf3a7770477ef7f4446 (patch) | |
| tree | e6f9b6660cbfc8902b22e0c390b1cfe7244904dc /sql/updates | |
| parent | cb8ff7976b1419c6a1334bb49783480d543aff16 (diff) | |
[3.3.5] Commands: lookup player shows which character is online (#23039)
* Show 'online' for every online player in lookup player commands
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/world/3.3.5/2019_02_15_00_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_02_15_00_world.sql b/sql/updates/world/3.3.5/2019_02_15_00_world.sql new file mode 100644 index 00000000000..40d3cd36168 --- /dev/null +++ b/sql/updates/world/3.3.5/2019_02_15_00_world.sql @@ -0,0 +1,4 @@ +-- Show if player is online in lookup player commands +DELETE FROM `trinity_string` WHERE `entry` = '48'; +INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES ('48', '(online)'); +UPDATE `trinity_string` SET `content_default` = ' %s (GUID %u) %s' WHERE (`entry` = '329'); |
