Rename dir to uppercase for autoload

This commit is contained in:
Ivor Barhansky 2024-02-08 15:35:42 +02:00
parent 88aeb4a912
commit be537b5dfc
285 changed files with 41 additions and 41 deletions

View File

@ -1310,11 +1310,11 @@ JS;
/** 4: Приемы защиты; 8,9: Прочие приемы; */
$j = 0;
foreach ($this->stats[$this->uids[$u2]]['u_priem'] as $priem) {
if ($priem[2] < 1 || !in_array($priem[4], [4, 8, 9]) || !file_exists("priem/$priem[1].php")) {
if ($priem[2] < 1 || !in_array($priem[4], [4, 8, 9]) || !file_exists("Priem/$priem[1].php")) {
continue;
}
$pr_momental_this = $u2;
require_once "priem/$priem[1].php";
require_once "Priem/$priem[1].php";
if (isset($fx_moment)) {
$yron = $fx_moment($u2, $u1, $j, $yron, $profil, $inlog);
unset($fx_moment);
@ -1324,7 +1324,7 @@ JS;
$j = 0;
foreach ($this->stats[$this->uids[$u1]]['u_priem'] as $priem) {
if ($priem[2] < 1 || $priem[4] != 5 && $priem[7] != 5 || !file_exists("priem/$priem[1].php")) {
if ($priem[2] < 1 || $priem[4] != 5 && $priem[7] != 5 || !file_exists("Priem/$priem[1].php")) {
continue;
}
if ($priem[4] == 5) {
@ -1332,7 +1332,7 @@ JS;
} elseif ($priem[7] == 5) { // влияет на урон от моментальных приемов
$pr_momental_this_seven = $u1;
}
require_once "priem/$priem[1].php";
require_once "Priem/$priem[1].php";
if (isset($fx_moment)) {
$yron = $fx_moment($u1, $u2, $j, $yron, $profil, $inlog);
unset($fx_moment);
@ -2905,7 +2905,7 @@ JS;
if (
empty($priem[2]) ||
!in_array($priem[5], [1, 2, 3, 4, 5]) ||
!file_exists("priem/$priem[1].php") ||
!file_exists("Priem/$priem[1].php") ||
$priem[5] == 1 && empty($this->stats[$this->uids[$u2]]['nopryh'])
) {
continue;
@ -2913,7 +2913,7 @@ JS;
$pr_used_this = $u1;
$pr_moment = true;
require_once "priem/$priem[1].php";
require_once "Priem/$priem[1].php";
if (isset($fx_priem)) {
$fx_priem($id, $at, $u1, $j);
unset($fx_priem);
@ -3590,10 +3590,10 @@ JS;
in_array($priem[1], [213, 220, 237, 286, 287, 288]) ||
in_array($priem[4], [2, 3, 4, 5, 8, 9]) && $priem[2] > 0 ||
$priem[4] == 1 && $priem[2] > 0 && empty($this->stats[$this->uids[$u2]]['nopryh'])) &&
file_exists("priem/$priem[1].php")
file_exists("Priem/$priem[1].php")
) {
$pr_used_this = $u1;
require_once "priem/$priem[1].php";
require_once "Priem/$priem[1].php";
if (isset($fx_priem)) {
$at = $fx_priem($id, $at, $u1, $j);
unset($fx_priem);
@ -3668,10 +3668,10 @@ JS;
if ((
in_array($priem[4], [2, 3, 4, 5]) && $priem[2] > 0 ||
$priem[4] == 1 && $priem[2] > 0 && empty($this->stats[$this->uids[$u2]]['nopryh'])) &&
file_exists("priem/$priem[1].php")
file_exists("Priem/$priem[1].php")
) {
$pr_used_this = $u1;
require_once "priem/$priem[1].php";
require_once "Priem/$priem[1].php";
if (isset($fx_priem)) {
$at = $fx_priem($id, $at, $u1, $j);
unset($fx_priem);
@ -3685,9 +3685,9 @@ JS;
$j = 0;
foreach ($this->stats[$this->uids[$u2]]['u_priem'] as $priem) {
if (in_array($priem[4], [8, 9]) && $priem[2] > 0 && file_exists("priem/$priem[1].php")) {
if (in_array($priem[4], [8, 9]) && $priem[2] > 0 && file_exists("Priem/$priem[1].php")) {
$pr_used_this = $u2;
require_once "priem/$priem[1].php";
require_once "Priem/$priem[1].php";
if (isset($fx_priem)) {
$at = $fx_priem($id, $at, $u2, $j);
unset($fx_priem);
@ -4744,10 +4744,10 @@ JS;
if ((
in_array($priem[6], [2, 3, 4, 5]) && $priem[2] > 0 ||
$priem[6] == 1 && $priem[2] > 0 && empty($this->stats[$this->uids[$u2]]['nopryh'])) &&
file_exists("priem/$priem[1].php")
file_exists("Priem/$priem[1].php")
) {
$pr_used_this = $u1;
require_once "priem/$priem[1].php";
require_once "Priem/$priem[1].php";
if (isset($fx_priem)) {
$fx_priem($id, $at, $u1, $j);
unset($fx_priem);

Some files were not shown because too many files have changed in this diff Show More