mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-14 08:50:53 +00:00
Set player height to skin height instead of default height in G_AddPlayer
This commit is contained in:
parent
fd4e69425e
commit
88fa2eb776
1 changed files with 1 additions and 1 deletions
|
@ -3352,7 +3352,7 @@ void G_AddPlayer(INT32 playernum)
|
|||
|
||||
p->playerstate = PST_REBORN;
|
||||
|
||||
p->height = mobjinfo[MT_PLAYER].height;
|
||||
p->height = skins[p->skin]->height;
|
||||
|
||||
if (G_GametypeUsesLives() || ((netgame || multiplayer) && (gametyperules & GTR_FRIENDLY)))
|
||||
p->lives = cv_startinglives.value;
|
||||
|
|
Loading…
Reference in a new issue