diff --git a/README.md b/README.md index c573791..77092d8 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/pawno/include/YALP.inc b/pawno/include/YALP.inc index 71c24d6..a5e95e2 100644 --- a/pawno/include/YALP.inc +++ b/pawno/include/YALP.inc @@ -1,4 +1,4 @@ -/** YALP v1.0 by IllidanS4 **/ +/** YALP v1.1 by IllidanS4 **/ //github.com/IllidanS4/YALP #if defined _inc_YALP diff --git a/plugins/src/main.cpp b/plugins/src/main.cpp index 2052f85..1c50e06 100644 --- a/plugins/src/main.cpp +++ b/plugins/src/main.cpp @@ -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; } @@ -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)