Skip to content

Commit

Permalink
#325 backend: temp: change phase change time from 600 seconds to 30 s…
Browse files Browse the repository at this point in the history
…econds
  • Loading branch information
Wolkenfarmer committed Oct 16, 2024
1 parent 95b163b commit d11e705
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/dps_training_k/game/models/patient_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
from django.core.exceptions import ValidationError
from django.db import models

from configuration import settings
from game.models import Exercise
from game.channel_notifications import PatientInstanceDispatcher
from game.models import Exercise
from helpers.completed_actions import CompletedActionsMixin
from helpers.eventable import Eventable
from helpers.moveable import Moveable
from helpers.moveable_to import MoveableTo
from helpers.triage import Triage
from helpers.completed_actions import CompletedActionsMixin
from template.models import PatientState, Action, Subcondition, Material


# from game.models import ActionInstanceStateNames moved into function to avoid circular imports

# from game.models import Area, Lab # moved into function to avoid circular imports
Expand Down Expand Up @@ -132,7 +132,7 @@ def apply_pretreatments(self):
def schedule_state_change(self, time_offset=0):
from game.models import ScheduledEvent

state_change_time = 600
state_change_time = 30

if self.patient_state.is_dead:
return False
Expand Down

0 comments on commit d11e705

Please sign in to comment.