actiontoggleplaceobjectdigging.c 250 B

12345678
  1. // Toggle object class for items which are able to dig
  2. class ActionTogglePlaceObjectDigging : ActionTogglePlaceObject
  3. {
  4. override bool ActionCondition(PlayerBase player, ActionTarget target, ItemBase item)
  5. {
  6. return !player.GetInColdArea();
  7. }
  8. }