Skip to content

Commit

Permalink
1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
IS4Code committed Nov 14, 2020
1 parent 0a7085f commit 0a5a0bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
YALP v1.0
YALP v1.1
==========

_YALP_, short for _Yet Another Lua Plugin_, aims to be a simple yet extendable SA-MP plugin allowing to use [Lua](https://www.lua.org/) for SA-MP server programming.
Expand Down
2 changes: 1 addition & 1 deletion pawno/include/YALP.inc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** YALP v1.0 by IllidanS4 **/
/** YALP v1.1 by IllidanS4 **/
//github.com/IllidanS4/YALP

#if defined _inc_YALP
Expand Down
4 changes: 2 additions & 2 deletions plugins/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ PLUGIN_EXPORT bool PLUGIN_CALL Load(void **ppData)

hooks::load();

logprintf(" YALP v1.0 loaded");
logprintf(" YALP v1.1 loaded");
logprintf(" Created by IllidanS4");
return true;
}
Expand All @@ -39,7 +39,7 @@ PLUGIN_EXPORT void PLUGIN_CALL Unload()
lua::remote::close();
hooks::unload();

logprintf(" YALP v1.0 unloaded");
logprintf(" YALP v1.1 unloaded");
}

PLUGIN_EXPORT int PLUGIN_CALL AmxLoad(AMX *amx)
Expand Down

0 comments on commit 0a5a0bd

Please sign in to comment.