Skip to content

Commit

Permalink
v0.4.1-beta release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kailo97 committed Aug 20, 2015
1 parent c579f6a commit 02513af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
v0.4.0-beta
Added ToogleEx method.
Added 'SJD_ToggleExDoors' native.
Added support 'func_wall_toggle' entity class.
Added Russian translation.
v0.4.1-beta
Added SJD_IsCurrentMapConfigured stock.
Fixed case bug.
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/smartjaildoors.sp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>

#define PLUGIN_VERSION "0.4.0-beta"
#define PLUGIN_VERSION "0.4.1-beta"

#include <sdktools>
#include <topmenus>
Expand Down Expand Up @@ -200,7 +200,7 @@ void InputToDoor(const char[] name, const char[] clsname, const char[] input)
GetEntityClassname(i, entclsname, sizeof(entclsname));
if (StrEqual(clsname, entclsname)) {
GetEntityName(i, entname, sizeof(entname));
if (StrEqual(name, entname)) {
if (StrEqual(name, entname, false)) {
doors[++doors[0]] = i;
}
}
Expand Down

0 comments on commit 02513af

Please sign in to comment.