Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit) (+1)

Setting auto describe mode on will automatically set the system : get and :drop commands be silent by default. 

To override that, add the following to your on_command {} section:

: match "get _"  {
   : get quiet = "false" ;
}
: match "drop _"  {
   : drop quiet = "false" ;
}