From 38f44b62a100445af626a98e1c8d0881ca3b1d1b Mon Sep 17 00:00:00 2001 From: Lacyway <20912169+Lacyway@users.noreply.github.com> Date: Mon, 6 May 2024 13:39:38 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0268f989..0e2eb1fa 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,8 @@ # Fika - Bepinex plugin -Client-side changes to make multiplayer work. - -## /!\ **NOTICE** /!\ + GitHub Downloads (all assets, latest release) GitHub code size in bytes GitHub Issues or Pull Requests -If you somehow ended up here while you just want to play a stable release, -please download the release from the discord [here](https://discord.gg/project-fika). - -If you're interested to contribute, then you're at the right place! +Client-side changes to make multiplayer work. ## State of the project From 24ac527bab31ab895b3acfa885ef0576226e1663 Mon Sep 17 00:00:00 2001 From: Lacyway <20912169+Lacyway@users.noreply.github.com> Date: Fri, 10 May 2024 00:45:47 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e2eb1fa..e3053197 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # Fika - Bepinex plugin - GitHub Downloads (all assets, latest release) GitHub code size in bytes GitHub Issues or Pull Requests +[![Discord](https://img.shields.io/discord/1202292159366037545?style=plastic&logo=discord&logoColor=FFFFFF&label=Fika%20Discord)](https://discord.gg/project-fika) +[![Downloads](https://img.shields.io/github/downloads/project-fika/Fika-Plugin/latest/total?style=plastic&logo=github)](https://github.com/project-fika/Fika-Plugin/releases/latest) +![Size](https://img.shields.io/github/languages/code-size/project-fika/Fika-Plugin?style=plastic&logo=github) +![Issues](https://img.shields.io/github/issues/project-fika/Fika-Plugin?style=plastic&logo=github) +[![License](https://img.shields.io/badge/CC--BY--NC--SA--4.0-blue?style=plastic&logo=creativecommons&logoColor=FFFFFF&label=License)](https://github.com/project-fika/Fika-Plugin/blob/main/LICENSE.md) Client-side changes to make multiplayer work. @@ -47,7 +51,7 @@ dependencies from your game installation for the project to build. ## Licenses -cc by-nc-sa +[cc by-nc-sa](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.en) This project is licensed under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.en). From d640feb0da76c71a7a0a7eb7341e08203db7d87e Mon Sep 17 00:00:00 2001 From: DeadLeavez Date: Sat, 11 May 2024 00:19:16 +0200 Subject: [PATCH 3/4] Change wording to be "raid server" rather than just "server" --- Fika.Core/Coop/GameMode/CoopGame.cs | 2 +- Fika.Core/Networking/FikaClient.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Fika.Core/Coop/GameMode/CoopGame.cs b/Fika.Core/Coop/GameMode/CoopGame.cs index 290b7da1..aa063686 100644 --- a/Fika.Core/Coop/GameMode/CoopGame.cs +++ b/Fika.Core/Coop/GameMode/CoopGame.cs @@ -835,7 +835,7 @@ private async Task WaitForPlayers() if (client.ServerConnection == null && connectionAttempts == 5) { - Singleton.Instance.ShowErrorScreen("Network Error", "Unable to connect to the server. Make sure ports are forwarded and/or UPnP is enabled and supported."); + Singleton.Instance.ShowErrorScreen("Network Error", "Unable to connect to the raid server. Make sure ports are forwarded and/or UPnP is enabled and supported."); } } diff --git a/Fika.Core/Networking/FikaClient.cs b/Fika.Core/Networking/FikaClient.cs index 55875cb5..cb87000e 100644 --- a/Fika.Core/Networking/FikaClient.cs +++ b/Fika.Core/Networking/FikaClient.cs @@ -101,7 +101,7 @@ public void Start() if (string.IsNullOrEmpty(IP)) { - Singleton.Instance.ShowErrorScreen("Network Error", "Unable to connect to the server. IP and/or Port was empty when requesting data!"); + Singleton.Instance.ShowErrorScreen("Network Error", "Unable to connect to the raid server. IP and/or Port was empty when requesting data!"); } else { From 6907d9bdb5eedc6ca35c940792a2b6d5c3d3d5d6 Mon Sep 17 00:00:00 2001 From: Jesse Date: Sat, 18 May 2024 12:10:18 +0200 Subject: [PATCH 4/4] Fix constructor exception --- .../HandsControllers/CoopObservedFirearmController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fika.Core/Coop/ObservedClasses/HandsControllers/CoopObservedFirearmController.cs b/Fika.Core/Coop/ObservedClasses/HandsControllers/CoopObservedFirearmController.cs index 2fd070bc..8b46a232 100644 --- a/Fika.Core/Coop/ObservedClasses/HandsControllers/CoopObservedFirearmController.cs +++ b/Fika.Core/Coop/ObservedClasses/HandsControllers/CoopObservedFirearmController.cs @@ -22,7 +22,7 @@ public class CoopObservedFirearmController : FirearmController public CoopPlayer coopPlayer; bool triggerPressed = false; bool needsReset = false; - float lastFireTime = Time.time; + float lastFireTime = 0f; public override bool IsTriggerPressed => triggerPressed; private float overlapCounter = 0f; private float aimMovementSpeed = 1f;