Change Tetris washout
This commit is contained in:
@@ -22,8 +22,8 @@ void games_packitemstr(char *packitemstr,struct games_packitem *item)
|
|||||||
|
|
||||||
int64_t games_cashout(struct games_player *P)
|
int64_t games_cashout(struct games_player *P)
|
||||||
{
|
{
|
||||||
int32_t dungeonlevel = P->dungeonlevel; int64_t mult=1000,cashout = 0;
|
int32_t dungeonlevel = P->dungeonlevel; int64_t mult=10000,cashout = 0;
|
||||||
cashout = (uint64_t)P->gold * mult * dungeonlevel * dungeonlevel;
|
cashout = (uint64_t)P->gold * mult;
|
||||||
return(cashout);
|
return(cashout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
rm *.so rogue/rogue tetris
|
rm *.so rogue/rogue games/tetris games/prices
|
||||||
|
|
||||||
echo rogue
|
echo rogue
|
||||||
make -f Makefile_rogue
|
make -f Makefile_rogue
|
||||||
|
|||||||
Reference in New Issue
Block a user