readme and version

This commit is contained in:
NK 2023-03-02 13:43:09 +00:00
parent 8520b6d86c
commit 7a589a2e51
3 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,7 @@
<h1> Auction House Flipper - Lilase</h1> <h1> Auction House Flipper - Lilase</h1>
Forge mod will automatiaclly buy item according to your configuration, and send you a webhook when it has been bought. Forge mod will automatiaclly buy item according to your configuration, and send you a webhook when it has been bought.
If you have any questions please join https://night0721.me/discord for support
For how to use https://github.com/night0721/lilase#how-to-use
# Features: # Features:
- Auto buy any item you want, with query customised by yourself - Auto buy any item you want, with query customised by yourself
@ -46,7 +48,7 @@ ANY, WEAPON, ARMOR, ACCESSORIES, CONSUMABLES, BLOCKS, MISC
Some movement during sniping so hypixel won't send to afk Some movement during sniping so hypixel won't send to afk
- v1.0.22 - Fatal bug fixed (before it will crash when open controls gui), also added title for process - v1.0.22 - Fatal bug fixed (before it will crash when open controls gui), also added title for process
- v1.0.23 - More lines in GUI, flipped, posted, sniped - v1.0.23 - More lines in GUI, flipped, posted, sniped
- v1.0.24 - - v1.0.24-beta -
Remove the use of org.json dependency Remove the use of org.json dependency
Fixing flipper could not be started when item is sniped Fixing flipper could not be started when item is sniped
Making send auction to webhook to be toggleable Making send auction to webhook to be toggleable

View file

@ -1,6 +1,6 @@
mod_name = Lilase mod_name = Lilase
mod_id = lilase mod_id = lilase
mod_version = 1.0.24 mod_version = 1.0.24-beta
essential.defaults.loom=0 essential.defaults.loom=0

View file

@ -30,7 +30,7 @@ import static me.night0721.lilase.features.ah.AHConfig.RECONNECT_DELAY;
public class Lilase { public class Lilase {
public static final String MOD_NAME = "Lilase"; public static final String MOD_NAME = "Lilase";
public static final String MODID = "Lilase"; public static final String MODID = "Lilase";
public static final String VERSION = "1.0.24"; public static final String VERSION = "1.0.24-beta";
public static final Minecraft mc = Minecraft.getMinecraft(); public static final Minecraft mc = Minecraft.getMinecraft();
public static AuctionHouse auctionHouse; public static AuctionHouse auctionHouse;
public static AHConfig config; public static AHConfig config;