mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
Merge branch 'master' of https://github.com/rheit/zdoom
This commit is contained in:
commit
f9ae304596
3 changed files with 15 additions and 8 deletions
|
@ -1345,12 +1345,14 @@ static void HandleReply(player_t *player, bool isconsole, int nodenum, int reply
|
||||||
if (reply->NextNode != 0)
|
if (reply->NextNode != 0)
|
||||||
{
|
{
|
||||||
int rootnode = npc->ConversationRoot;
|
int rootnode = npc->ConversationRoot;
|
||||||
if (reply->NextNode < 0)
|
unsigned next = (unsigned)(rootnode + (reply->NextNode < 0 ? -1 : 1) * reply->NextNode - 1);
|
||||||
{
|
|
||||||
unsigned next = (unsigned)(rootnode - reply->NextNode - 1);
|
if (next < StrifeDialogues.Size())
|
||||||
if (gameaction != ga_slideshow && next < StrifeDialogues.Size())
|
|
||||||
{
|
{
|
||||||
npc->Conversation = StrifeDialogues[next];
|
npc->Conversation = StrifeDialogues[next];
|
||||||
|
|
||||||
|
if (gameaction != ga_slideshow)
|
||||||
|
{
|
||||||
P_StartConversation (npc, player->mo, player->ConversationFaceTalker, false);
|
P_StartConversation (npc, player->mo, player->ConversationFaceTalker, false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1359,10 +1361,6 @@ static void HandleReply(player_t *player, bool isconsole, int nodenum, int reply
|
||||||
S_StopSound (npc, CHAN_VOICE);
|
S_StopSound (npc, CHAN_VOICE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
npc->Conversation = StrifeDialogues[rootnode + reply->NextNode - 1];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
npc->angle = player->ConversationNPCAngle;
|
npc->angle = player->ConversationNPCAngle;
|
||||||
|
|
|
@ -4297,6 +4297,14 @@ void P_RailAttack(AActor *source, int damage, int offset_xy, fixed_t offset_z, i
|
||||||
SpawnShootDecal(source, trace);
|
SpawnShootDecal(source, trace);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
if (trace.HitType == TRACE_HitFloor || trace.HitType == TRACE_HitCeiling)
|
||||||
|
{
|
||||||
|
AActor* puff = NULL;
|
||||||
|
if (puffclass != NULL && puffDefaults->flags3 & MF3_ALWAYSPUFF)
|
||||||
|
{
|
||||||
|
puff = P_SpawnPuff(source, puffclass, trace.X, trace.Y, trace.Z, (source->angle + angleoffset) - ANG90, 1, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
if (thepuff != NULL)
|
if (thepuff != NULL)
|
||||||
{
|
{
|
||||||
if (trace.HitType == TRACE_HitFloor &&
|
if (trace.HitType == TRACE_HitFloor &&
|
||||||
|
|
|
@ -403,6 +403,7 @@ D0139194F7817BF06F3988DFC47DB38D // Whispers of Satan map29
|
||||||
}
|
}
|
||||||
|
|
||||||
D7F6E9F08C39A17026349A04F8C0B0BE // Return to Hadron, e1m9
|
D7F6E9F08C39A17026349A04F8C0B0BE // Return to Hadron, e1m9
|
||||||
|
19D03FFC875589E21EDBB7AB74EF4AEF // Return to Hadron, e1m9, 2016.01.03 update
|
||||||
{
|
{
|
||||||
pointonline
|
pointonline
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue