|
1 | 1 | /*********************************************************************************** |
2 | 2 | * Copyright (c) 2024 /// Project SWG /// www.projectswg.com * |
3 | 3 | * * |
4 | | - * ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on * |
| 4 | + * ProjectSWG is an emulation project for Star Wars Galaxies founded on * |
5 | 5 | * July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. * |
6 | | - * Our goal is to create an emulator which will provide a server for players to * |
7 | | - * continue playing a game similar to the one they used to play. We are basing * |
8 | | - * it on the final publish of the game prior to end-game events. * |
| 6 | + * Our goal is to create one or more emulators which will provide servers for * |
| 7 | + * players to continue playing a game similar to the one they used to play. * |
9 | 8 | * * |
10 | 9 | * This file is part of Holocore. * |
11 | 10 | * * |
@@ -48,9 +47,9 @@ class CloningTest : AcceptanceTest() { |
48 | 47 |
|
49 | 48 | @Test |
50 | 49 | fun `possible to clone after being deathblown`() { |
51 | | - addUser("username", "password", AccessLevel.DEV) |
52 | | - val character1 = HeadlessSWGClient.createZonedInCharacter("username", "password", "charone") |
53 | | - val character2 = HeadlessSWGClient.createZonedInCharacter("username", "password", "chartwo") |
| 50 | + val user = generateUser(AccessLevel.DEV) |
| 51 | + val character1 = HeadlessSWGClient.createZonedInCharacter(user.username, user.password, "charone") |
| 52 | + val character2 = HeadlessSWGClient.createZonedInCharacter(user.username, user.password, "chartwo") |
54 | 53 | character1.duel(character2.player.creatureObject) |
55 | 54 | character2.duel(character1.player.creatureObject) |
56 | 55 | character1.adminKill(character2.player.creatureObject) |
|
0 commit comments