mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-21 13:05:36 +01:00
8f5d050bab
* 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>
15 lines
425 B
Plaintext
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"
|