aboutsummaryrefslogtreecommitdiff
path: root/client/map/tiles/deep_fryer.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/tiles/deep_fryer.gd')
-rw-r--r--client/map/tiles/deep_fryer.gd30
1 files changed, 0 insertions, 30 deletions
diff --git a/client/map/tiles/deep_fryer.gd b/client/map/tiles/deep_fryer.gd
deleted file mode 100644
index 229028e7..00000000
--- a/client/map/tiles/deep_fryer.gd
+++ /dev/null
@@ -1,30 +0,0 @@
-# Hurry Curry! - a game about cooking
-# Copyright (C) 2025 Hurry Curry! contributors
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published by
-# the Free Software Foundation, version 3 of the License only.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
-class_name DeepFryer
-extends CounterBase
-
-var deep_fryer = preload("res://map/tiles/deep_fryer.tscn")
-
-func _init(ctx: TileFactory.TileCC):
- super(ctx, deep_fryer)
-
-func set_item(i: Item):
- super(i)
- if i != null:
- i.rotation_target = item_base.global_rotation.y + PI
-
-static func interact_target() -> Vector3:
- return Vector3(0., 0.55, 0.)