Files
SkyratBot 8f5d050bab [MIRROR] Comprehensive frame refactor to fix being unable to thwack frames with brute force to break them (#26596)
* Comprehensive frame refactor to fix being unable to thwack frames with brute force to break them (#81477)

* There we go?

---------

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
Co-authored-by: Useroth <37159550+Useroth@users.noreply.github.com>
2024-02-21 20:37:28 -05:00

15 lines
425 B
Plaintext

//default_unfasten_wrench() return defines
/// Return if unfasten failed, but allow attack chain to continue
#define CANT_UNFASTEN 0
/// Return if unfasten failed, and stop attack chain
#define FAILED_UNFASTEN 1
/// Return if unfasten succeeded
#define SUCCESSFUL_UNFASTEN 2
// Defines for the construction component
#define FORWARD 1
#define BACKWARD -1
#define ITEM_DELETE "delete"
#define ITEM_MOVE_INSIDE "move_inside"