-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scaffolding for New Combat Time Requirements (#97)
* Added Support for Winter Invasion * Added new Combat Time Threshold Logic * Set Second Between Combats to 60s to reduce false positives. * Fixed Damage Out Parsing.
- Loading branch information
Showing
4 changed files
with
59 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
ladder/migrations/0004_variant_combat_time_source_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.9 on 2025-01-02 03:32 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("ladder", "0003_ladderentry_visible"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="variant", | ||
name="combat_time_source", | ||
field=models.TextField(default="combat_time"), | ||
), | ||
migrations.AddField( | ||
model_name="variant", | ||
name="combat_time_threshold", | ||
field=models.FloatField(default=0.9), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters