示例#1
0
    public void beginChilled(ObjectActor subject, ObjectInteractable source)
    {
        BurningEffect burning = subject.getBurningEffect();

        if (burning != null)
        {
            subject.endBurning();
            return;
        }
        beginCondition <ChilledEffect>(subject, source);
    }
示例#2
0
 public void end(ObjectActor subject)
 {
     subject.endBurning();
     subject.beginShattered(source);
     Destroy(this);
 }