mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 10:31:29 +00:00
[Bug Fix] Fix Race 474 for Titanium (#4979)
This commit is contained in:
parent
d876c6df2a
commit
c4f408bffc
@ -1059,7 +1059,7 @@ namespace Titanium
|
|||||||
OUT(spawnid);
|
OUT(spawnid);
|
||||||
OUT_str(charname);
|
OUT_str(charname);
|
||||||
|
|
||||||
if (emu->race > 473)
|
if (emu->race > 474)
|
||||||
eq->race = 1;
|
eq->race = 1;
|
||||||
else
|
else
|
||||||
OUT(race);
|
OUT(race);
|
||||||
@ -1840,7 +1840,7 @@ namespace Titanium
|
|||||||
emu_cse = (CharacterSelectEntry_Struct *)emu_ptr;
|
emu_cse = (CharacterSelectEntry_Struct *)emu_ptr;
|
||||||
|
|
||||||
eq->Race[char_index] = emu_cse->Race;
|
eq->Race[char_index] = emu_cse->Race;
|
||||||
if (eq->Race[char_index] > 473)
|
if (eq->Race[char_index] > 474)
|
||||||
eq->Race[char_index] = 1;
|
eq->Race[char_index] = 1;
|
||||||
|
|
||||||
for (int index = 0; index < EQ::textures::materialCount; ++index) {
|
for (int index = 0; index < EQ::textures::materialCount; ++index) {
|
||||||
@ -2421,7 +2421,7 @@ namespace Titanium
|
|||||||
strcpy(eq->title, emu->title);
|
strcpy(eq->title, emu->title);
|
||||||
// eq->unknown0274 = emu->unknown0274;
|
// eq->unknown0274 = emu->unknown0274;
|
||||||
eq->helm = emu->helm;
|
eq->helm = emu->helm;
|
||||||
if (emu->race > 473)
|
if (emu->race > 474)
|
||||||
eq->race = 1;
|
eq->race = 1;
|
||||||
else
|
else
|
||||||
eq->race = emu->race;
|
eq->race = emu->race;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user