mirror of
https://gitlab.com/drummyfish/anarch.git
synced 2024-11-21 00:15:04 -05:00
Update map
This commit is contained in:
parent
2d55bb7ad2
commit
6b8cf3905c
Binary file not shown.
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.6 KiB |
7
main.c
7
main.c
@ -1186,7 +1186,12 @@ void SFG_initPlayer()
|
||||
|
||||
SFG_player.health = SFG_PLAYER_START_HEALTH;
|
||||
|
||||
SFG_player.cards = 0;
|
||||
SFG_player.cards =
|
||||
#if SFG_UNLOCK_DOOR
|
||||
255;
|
||||
#else
|
||||
0;
|
||||
#endif
|
||||
|
||||
SFG_player.justTeleported = 0;
|
||||
|
||||
|
@ -261,4 +261,9 @@
|
||||
*/
|
||||
#define SFG_REVEAL_MAP 1
|
||||
|
||||
/**
|
||||
Gives player all keys from start.
|
||||
*/
|
||||
#define SFG_UNLOCK_DOOR 1
|
||||
|
||||
#endif // guard
|
||||
|
Loading…
Reference in New Issue
Block a user