DEADSOFTWARE

Prettier world + ores
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / actions / UseItemActionsModule.kt
index a54e4a77e31403e9e2f7c1583221af2a8ddf42f3..0206d5f82fe9c0fb61511d45e662a7dd1e8456ec 100644 (file)
@@ -28,19 +28,10 @@ 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)
-    @GameScope
-    fun bindPlaceBlockItemToBackgroundAction(action: PlaceBlockItemToBackgroundAction): IUseItemAction {
-        return action
-    }
-
-
 }