Implemented torch ability

This commit is contained in:
Max 2025-01-30 11:05:39 +01:00
parent 0bf8adc76d
commit 9a8077021a
15 changed files with 881 additions and 49 deletions

View file

@ -6,7 +6,7 @@ public class NumberLock : Lock
public override bool CheckIfKeyFits(DicePair dicePair)
{
if (dicePair.Sum() == number)
if (base.CheckIfKeyFits(dicePair) && dicePair.Sum() == number)
{
return true;
}