Clean repo for open source release

Remove build artifacts, dev tool configs, unused dependencies,
and third-party source dumps. Add proper README, update .gitignore,
clean up Makefile.
This commit is contained in:
NotEvil
2026-04-12 00:51:22 +02:00
parent 2e7a1d403b
commit f6466360b6
1947 changed files with 238025 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
package com.tiedup.remake.dispenser;
import com.tiedup.remake.items.clothes.GenericClothes;
import com.tiedup.remake.v2.BodyRegionV2;
import com.tiedup.remake.state.IBondageState;
import net.minecraft.world.item.ItemStack;
/**
* Dispenser behavior for dressing entities with clothes.
*
* Based on original BehaviorDispenserClothes from 1.12.2
*/
public class ClothesDispenseBehavior extends EquipBondageDispenseBehavior {
@Override
protected boolean isValidItem(ItemStack stack) {
return !stack.isEmpty() && stack.getItem() instanceof GenericClothes;
}
@Override
protected boolean canEquip(IBondageState state) {
return state != null && !state.hasClothes();
}
@Override
protected void equip(IBondageState state, ItemStack stack) {
if (state != null) {
state.equip(BodyRegionV2.TORSO, stack);
}
}
}