Added build instructions to readme

This commit is contained in:
NovaRain
2023-07-26 15:08:41 +08:00
parent 5c3c1ca4db
commit c95d872f77
2 changed files with 16 additions and 2 deletions
+1 -1
View File
@@ -6,6 +6,6 @@
#define obj_name_safe(obj) (obj_name(obj) if obj else "(null)")
#define get_active_weapon(critter) critter_inven_obj(critter, (2 - active_hand) if critter == dude_obj else INVEN_TYPE_RIGHT_HAND)
#define obj_can_hear_and_shoot_obj(critter,target) (obj_can_hear_obj(critter, target) and obj_blocking_line(critter, tile_num(target), BLOCKING_TYPE_SHOOT) == target)
#define obj_can_hear_and_shoot_obj(critter, target) (obj_can_hear_obj(critter, target) and obj_blocking_line(critter, tile_num(target), BLOCKING_TYPE_SHOOT) == target)
#endif