mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
Merge branch 'master' of https://github.com/rheit/zdoom
This commit is contained in:
commit
2f2bd91083
3 changed files with 5 additions and 4 deletions
|
@ -1045,7 +1045,7 @@ int P_DamageMobj (AActor *target, AActor *inflictor, AActor *source, int damage,
|
|||
return -1;
|
||||
}
|
||||
|
||||
if ((rawdamage < TELEFRAG_DAMAGE) || (target->flags7 & MF7_LAXTELEFRAGDMG)) // TELEFRAG_DAMAGE may only be reduced with NOTELEFRAGPIERCE or it may not guarantee its effect.
|
||||
if ((rawdamage < TELEFRAG_DAMAGE) || (target->flags7 & MF7_LAXTELEFRAGDMG)) // TELEFRAG_DAMAGE may only be reduced with LAXTELEFRAGDMG or it may not guarantee its effect.
|
||||
{
|
||||
if (player && damage > 1)
|
||||
{
|
||||
|
@ -1221,7 +1221,8 @@ int P_DamageMobj (AActor *target, AActor *inflictor, AActor *source, int damage,
|
|||
((player && player != source->player) || (!player && target != source)) &&
|
||||
target->IsTeammate (source))
|
||||
{
|
||||
if (rawdamage < TELEFRAG_DAMAGE) //Use the original damage to check for telefrag amount. Don't let the now-amplified damagetypes do it.
|
||||
//Use the original damage to check for telefrag amount. Don't let the now-amplified damagetypes do it.
|
||||
if (rawdamage < TELEFRAG_DAMAGE || (target->flags7 & MF7_LAXTELEFRAGDMG))
|
||||
{ // Still allow telefragging :-(
|
||||
damage = (int)((float)damage * level.teamdamage);
|
||||
if (damage < 0)
|
||||
|
|
|
@ -883,7 +883,7 @@ FArchive &operator<< (FArchive &arc, secspecial_t &p)
|
|||
{
|
||||
if (SaveVersion < 4529)
|
||||
{
|
||||
short special;
|
||||
int special;
|
||||
arc << special;
|
||||
sector_t sec;
|
||||
P_InitSectorSpecial(&sec, special, true);
|
||||
|
|
|
@ -573,7 +573,7 @@ static inline int wm_isdigit(int c) {
|
|||
#define TOKEN_CNT_INC 8
|
||||
static char** WM_LC_Tokenize_Line(char *line_data)
|
||||
{
|
||||
int line_length = strlen(line_data);
|
||||
int line_length = (int)strlen(line_data);
|
||||
int token_data_length = 0;
|
||||
int line_ofs = 0;
|
||||
int token_start = 0;
|
||||
|
|
Loading…
Reference in a new issue