DEADSOFTWARE

Fix furnace bugs
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / actions / UseItemActionsModule.kt
index a54e4a77e31403e9e2f7c1583221af2a8ddf42f3..a6aed22cfdc04b1f696efa4cb0e449247ec81380 100644 (file)
@@ -28,19 +28,18 @@ class UseItemActionsModule {
 
     @Binds
     @IntoMap
-    @StringKey(PlaceBlockItemToForegroundAction.ACTION_KEY)
+    @StringKey(UseEmptyBucketAction.ACTION_KEY)
     @GameScope
-    fun bindPlaceBlockItemToForegroundAction(action: PlaceBlockItemToForegroundAction): IUseItemAction {
+    fun bindUseEmptyBucketAction(action: UseEmptyBucketAction): IUseItemAction {
         return action
     }
 
     @Binds
     @IntoMap
-    @StringKey(PlaceBlockItemToBackgroundAction.ACTION_KEY)
+    @StringKey(UsePigSpawnEggAction.ACTION_KEY)
     @GameScope
-    fun bindPlaceBlockItemToBackgroundAction(action: PlaceBlockItemToBackgroundAction): IUseItemAction {
+    fun bindUsePigSpawnEgg(action: UsePigSpawnEggAction): IUseItemAction {
         return action
     }
 
-
 }