Skip to content

Commit

Permalink
chore: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
KobeBryant114514 committed May 2, 2024
1 parent 27570d0 commit 3744e4c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"type": "native",
"author": "GroupMountain",
"description": "Group Mountain Library",
"version": "0.12.3"
"version": "0.12.4"
}
2 changes: 1 addition & 1 deletion src/Server/FloatingTextAPI.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ll::schedule::ServerTimeScheduler mScheduler;

int getNextFloatingTextId() {
auto id = Random::getThreadLocal().nextInt(0, 2147483647);
while (ll::service::getLevel()->fetchEntity(ActorUniqueID(id))) {
while (ll::service::getLevel()->fetchEntity(ActorUniqueID(id)) || mRuntimeFloatingTextList.contains(id)) {
id = Random::getThreadLocal().nextInt(0, 2147483647);
}
return id;
Expand Down
2 changes: 1 addition & 1 deletion src/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#define LIB_VERSION_MAJOR 0
#define LIB_VERSION_MINOR 12
#define LIB_VERSION_REVISION 3
#define LIB_VERSION_REVISION 4
#define LIB_VERSION_PRERELEASE ""
#define LIB_VERSION_BUILD_META ""

Expand Down
4 changes: 2 additions & 2 deletions tooth.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "github.com/GroupMountain/GMLIB",
"version": "0.12.3",
"version": "0.12.4",
"info": {
"name": "GMLIB",
"description": "Group Mountain Library",
Expand All @@ -13,7 +13,7 @@
"library"
]
},
"asset_url": "https://github.com/GroupMountain/GMLIB/releases/download/v0.12.3/GMLIB-windows-x64.zip",
"asset_url": "https://github.com/GroupMountain/GMLIB/releases/download/v0.12.4/GMLIB-windows-x64.zip",
"prerequisites": {
"github.com/LiteLDev/LeviLamina": "0.12.x"
},
Expand Down

0 comments on commit 3744e4c

Please sign in to comment.