示例#1
0
    public void beginBurning(ObjectActor subject, ObjectInteractable source)
    {
        ChilledEffect chilled = subject.getChilledEffect();

        if (chilled != null)
        {
            subject.endChilled();
            return;
        }
        beginCondition <BurningEffect>(subject, source);
    }