1
0
mirror of https://github.com/XProger/OpenLara.git synced 2025-08-11 23:54:09 +02:00

Increase shotgun damage (#270)

the main problem is the bullet trace code, it differs from the original, but your commit will compensate it
This commit is contained in:
Wyatt Phillips
2020-09-11 16:01:05 -04:00
committed by GitHub
parent 1b1cef1490
commit 13b6163efc

View File

@@ -826,7 +826,7 @@ struct Lara : Character {
float wpnGetDamage() {
switch (wpnCurrent) {
case TR::Entity::PISTOLS : return 1;
case TR::Entity::SHOTGUN : return 1;
case TR::Entity::SHOTGUN : return 3;
case TR::Entity::MAGNUMS : return 2;
case TR::Entity::UZIS : return 1;
default : ;