-
Notifications
You must be signed in to change notification settings - Fork 25
SERVER: PHD Flopper fix #159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
ef8e240
7502ed3
87a0928
dd7f211
6ea1605
13e8cff
291fe73
364c51b
04db2d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -363,4 +363,14 @@ void(float score_earned) Gamemode_GunGame_PlayerAddScore = | |
| } | ||
| } | ||
| } | ||
| }; | ||
|
|
||
| void(entity attacker, float death_style) Gamemode_GunGame_DieHandler = | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Flopper isn't a guaranteed kill in the later rounds. Do you get points awarded for non-killing PhD damage too?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, it does not currently. Should it be that way? |
||
| { | ||
|
|
||
| // possible fix for PHD Flopper giving points toward your weapon | ||
| switch(death_style) { | ||
| case DMG_TYPE_FLOPPER: | ||
| return 0; | ||
| } | ||
| }; | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gamemode_Festive_ScoreForDamagewill need modified to add support for this type and return 90 points.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Understood